1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 05:02:02 +02:00

Merge pull request #3223 from SimSync/checkBan

Fixed an issue in iphandler::checkBan()
This commit is contained in:
Cameron 2018-07-04 17:37:12 -07:00 committed by GitHub
commit fd8772f88a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -991,6 +991,11 @@ class eIPHandler
echo "\nBanned</pre>";
}
// added missing if clause
if ($do_return)
{
return false;
}
exit();
}