Merge branch 'master' of simonpl/tt-rss into master

This commit is contained in:
fox 2017-12-14 18:01:21 +00:00 committed by Gogs
commit f559d74a4e
1 changed files with 1 additions and 1 deletions

View File

@ -922,7 +922,7 @@ class Pref_Prefs extends Handler_Protected {
static function isdefaultpassword() {
$authenticator = PluginHost::getInstance()->get_plugin($_SESSION["auth_module"]);
if ($authenticator && function_exists($authenticator->check_password) $authenticator->check_password($_SESSION["uid"], "password")) {
if ($authenticator && function_exists($authenticator->check_password) && $authenticator->check_password($_SESSION["uid"], "password")) {
return true;
}