diff options
| author | fox <fox+git@fakecake.org> | 2017-12-14 18:01:21 +0000 |
|---|---|---|
| committer | Gogs <gogs@fake.local> | 2017-12-14 18:01:21 +0000 |
| commit | f559d74a4e8dcab529813cb70526dc5762f4a4bf (patch) | |
| tree | 51832371b02f254cbadb57dc07df765fb82b7bbf | |
| parent | fde50b4e634cf42635a8ab62ae72e8a73d59f1bc (diff) | |
| parent | 5f19596651de08a429656cccf1273e79ccf305ea (diff) | |
Merge branch 'master' of simonpl/tt-rss into master
| -rw-r--r-- | classes/pref/prefs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php index 7a61b6f19..fca67d0a6 100644 --- a/classes/pref/prefs.php +++ b/classes/pref/prefs.php @@ -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; } |