isdefaultpassword: use method_exists() to check for check_password
This commit is contained in:
parent
0f05147531
commit
d0cce0c7a4
1 changed files with 4 additions and 1 deletions
|
@ -922,7 +922,10 @@ 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 && function_exists($authenticator->check_password) && $authenticator->check_password($_SESSION["uid"], "password")) {
|
if ($authenticator &&
|
||||||
|
method_exists($authenticator, "check_password") &&
|
||||||
|
$authenticator->check_password($_SESSION["uid"], "password")) {
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue