1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 21:27:25 +02:00

Merge pull request #3995 from Jimmi08/patch-5

Fixes #3983 blank page because missing method name
This commit is contained in:
Cameron
2019-12-28 12:03:09 -08:00
committed by GitHub

View File

@@ -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
}
}
}