1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +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

View File

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