From: Andrew Dolgov Date: Thu, 16 Aug 2012 11:38:33 +0000 (+0400) Subject: allow auto_create_user() to be used instead of find_user_by_login() when auto creatin... X-Git-Tag: 1.6.0~141 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=501ed09a2646f2dbe3958c92f4c8a388ce981dbd;p=tt-rss.git allow auto_create_user() to be used instead of find_user_by_login() when auto creating is off --- diff --git a/classes/auth_base.php b/classes/auth_base.php index 8c819b66..7c37967a 100644 --- a/classes/auth_base.php +++ b/classes/auth_base.php @@ -34,7 +34,7 @@ class Auth_Base { } } - return false; + return $this->find_user_by_login($login); } function find_user_by_login($login) {