fix single user mode login failing because of isdefaultpassword()

master
Andrew Dolgov 7 years ago
parent 072a348f93
commit 9390ddeae2

@ -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->check_password($_SESSION["uid"], "password")) { if ($authenticator && $authenticator->check_password($_SESSION["uid"], "password")) {
return true; return true;
} }

Loading…
Cancel
Save