From 07bfc2d0bfd736eecfae3e3536c676cb7ce7a41e Mon Sep 17 00:00:00 2001 From: Jimako Date: Tue, 29 Oct 2019 18:14:23 +0100 Subject: [PATCH] #3983 fix for blank page because missing method name --- e107_handlers/login.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_handlers/login.php b/e107_handlers/login.php index fecc0a869..6b2f43328 100644 --- a/e107_handlers/login.php +++ b/e107_handlers/login.php @@ -103,7 +103,7 @@ class userlogin $result = false; foreach ($authMethod as $method) { - if ($method == 'e107') + if ($method == 'e107' OR $method == 'e107db') { if ($this->lookupUser($username, $forceLogin)) { @@ -687,4 +687,4 @@ class userlogin } -} \ No newline at end of file +}