Changeset 4438 for trunk/plugins/validate/demo/captcha/process.php
- Timestamp:
- 01/14/08 16:37:20 (11 months ago)
- Files:
-
- 1 modified
-
trunk/plugins/validate/demo/captcha/process.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/validate/demo/captcha/process.php
r3607 r4438 6 6 // To avoid case conflicts, make the input uppercase and check against the session value 7 7 // If it's correct, echo '1' as a string 8 if(strtoupper($_GET[' value']) == $_SESSION['captcha_id'])8 if(strtoupper($_GET['captcha']) == $_SESSION['captcha_id']) 9 9 echo 'true'; 10 10 // Else echo '0' as a string
