diff --git a/Validator/CaptchaValidator.php b/Validator/CaptchaValidator.php index b0998e1..9ec42ea 100644 --- a/Validator/CaptchaValidator.php +++ b/Validator/CaptchaValidator.php @@ -63,6 +63,6 @@ class CaptchaValidator implements FormValidatorInterface */ private function niceize($code) { - return strtr($code, 'oil', '01l'); + return strtr(strtolower($code), 'oil', '01l'); } }