Bug Tracker

Show
Ignore:
Timestamp:
01/14/08 16:37:20 (11 months ago)
Author:
joern.zaefferer
Message:

fixed captcha demo

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plugins/validate/demo/captcha/process.php

    r3607 r4438  
    66// To avoid case conflicts, make the input uppercase and check against the session value 
    77// If it's correct, echo '1' as a string 
    8 if(strtoupper($_GET['value']) == $_SESSION['captcha_id']) 
     8if(strtoupper($_GET['captcha']) == $_SESSION['captcha_id']) 
    99    echo 'true'; 
    1010// Else echo '0' as a string