mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 13:35:56 +00:00
Check if the auth module supports check_password() method before using it
This commit is contained in:
@@ -922,7 +922,7 @@ class Pref_Prefs extends Handler_Protected {
|
|||||||
static function isdefaultpassword() {
|
static function isdefaultpassword() {
|
||||||
$authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
|
$authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
|
||||||
|
|
||||||
if ($authenticator && $authenticator->check_password($_SESSION["uid"], "password")) {
|
if ($authenticator && function_exists($authenticator->check_password) $authenticator->check_password($_SESSION["uid"], "password")) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1125,4 +1125,4 @@ class Pref_Prefs extends Handler_Protected {
|
|||||||
|
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user