1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Fixed an issue in iphandler::checkBan() which caused the script to stop

without any message instead of returning a value (true or false) in case
the submitted email adress is blocked
This commit is contained in:
Achim Ennenbach
2018-06-27 21:34:19 +02:00
parent 7570b7ce4e
commit 724651376e

View File

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