From 729bf3868e8a5fc84696b6d85ba6562653c4e3ab Mon Sep 17 00:00:00 2001 From: Jimako Date: Tue, 29 Oct 2019 17:54:34 +0100 Subject: [PATCH] #3984 Fix for missing scenario with secondary source --- e107_plugins/alt_auth/alt_auth_login_class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e107_plugins/alt_auth/alt_auth_login_class.php b/e107_plugins/alt_auth/alt_auth_login_class.php index 4234fd32c..57bbf3c7e 100755 --- a/e107_plugins/alt_auth/alt_auth_login_class.php +++ b/e107_plugins/alt_auth/alt_auth_login_class.php @@ -251,6 +251,7 @@ class alt_login $this->loginResult = LOGIN_ABORT; return; case AUTH_BADPASSWORD: + case AUTH_NOUSER: if(varset(e107::getPref('auth_badpassword'), TRUE)) { $this->loginResult = LOGIN_TRY_OTHER; @@ -293,4 +294,4 @@ class alt_login } } -?> \ No newline at end of file +?>