From 724651376e1f1e22856222d28b006f9d96a14ccc Mon Sep 17 00:00:00 2001 From: Achim Ennenbach Date: Wed, 27 Jun 2018 21:34:19 +0200 Subject: [PATCH] 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 --- e107_handlers/iphandler_class.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/e107_handlers/iphandler_class.php b/e107_handlers/iphandler_class.php index e8c9edcfe..dfad8ef24 100644 --- a/e107_handlers/iphandler_class.php +++ b/e107_handlers/iphandler_class.php @@ -991,6 +991,11 @@ class eIPHandler echo "\nBanned"; } + // added missing if clause + if ($do_return) + { + return false; + } exit(); }