allow auto_create_user() to be used instead of find_user_by_login() when auto creating is off

This commit is contained in:
Andrew Dolgov
2012-08-16 15:38:33 +04:00
parent 0d421af86f
commit 501ed09a26

View File

@@ -34,7 +34,7 @@ class Auth_Base {
} }
} }
return false; return $this->find_user_by_login($login);
} }
function find_user_by_login($login) { function find_user_by_login($login) {