summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-08-16 15:38:33 +0400
committerAndrew Dolgov <[email protected]>2012-08-16 15:38:33 +0400
commit501ed09a2646f2dbe3958c92f4c8a388ce981dbd (patch)
tree94adf10abccbe4467fdc46615021824144857c00
parent0d421af86fdfe270e7396f308cf53f3b908e3d74 (diff)
allow auto_create_user() to be used instead of find_user_by_login() when auto creating is off
-rw-r--r--classes/auth_base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/auth_base.php b/classes/auth_base.php
index 8c819b668..7c37967af 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) {