This commit is contained in:
RuthAdele 2013-09-24 02:22:20 -07:00
commit 415bd76118
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ class MathSpamProtectorField extends SpamProtectorField {
Session::clear('mathQuestionV1');
Session::clear('mathQuestionV2');
return (MathSpamProtectorField::digit_to_word($v1 + $v2) == $answer || ($v1 + $v2) == $answer);
return (MathSpamProtectorField::digit_to_word($v1 + $v2) == strtolower($answer) || ($v1 + $v2) == $answer);
}
/**
@ -158,4 +158,4 @@ class MathSpamProtectorField extends SpamProtectorField {
public static function set_enabled($enabled = true) {
self::$enabled = $enabled;
}
}
}