diff --git a/registration-system/index.php b/registration-system/index.php index bfc849320fdccf5ccab5d6c886dd823bf2d0177b..5ea66c13d3de4d7a499e624a57e15d03486877b6 100644 --- a/registration-system/index.php +++ b/registration-system/index.php @@ -173,10 +173,8 @@ function index_check_field($index, $check, &$datarr, &$errarr, $errmess){ comm_verbose(3,"checking ".$index); if($index == "captcha"){ - if(isset($_SESSION['captcha']) && isset($_REQUEST[$index]) && $_REQUEST[$index] == $_SESSION['captcha']) - { + if(isset($_SESSION['captcha']) && isset($_REQUEST[$index]) && strtolower($_REQUEST[$index]) == strtolower($_SESSION['captcha'])) unset($_SESSION['captcha']); - } else { array_push($errarr, $errmess);