Changeset 2547
- Timestamp:
- 04/21/2008 10:16:17 AM (7 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Captcha.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Captcha.php
r2535 r2547 129 129 public static function valid_captcha($str) 130 130 { 131 return ( (string) $str === Session::instance()->get('captcha_code'));131 return (strtoupper($str) === strtoupper(Session::instance()->get('captcha_code'))); 132 132 } 133 133
