Changeset 3024

Show
Ignore:
Timestamp:
07/10/08 01:21:07 (1 month ago)
Author:
Geert
Message:

Added a simple Math Captcha driver. Also setting svn properties.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/system/config/captcha.php

    r3016 r3024  
    88 * 
    99 * Group Options: 
    10  *  style           - Captcha type, e.g. basic, riddle 
     10 *  style           - Captcha type, e.g. basic, math, riddle 
    1111 *  width           - Width of the Captcha image 
    1212 *  height          - Height of the Captcha image 
  • trunk/system/libraries/drivers/Captcha/Basic.php

    • Property svn:eol-style set to LF
    • Property copyright set to Copyright (c) 2007-2008 Kohana Team
    • Property svn:keywords set to Id
  • trunk/system/libraries/drivers/Captcha/Riddle.php

    • Property svn:eol-style set to LF
    • Property copyright set to Copyright (c) 2007-2008 Kohana Team
    • Property svn:keywords set to Id
    r3018 r3024  
    4545                $riddle = $riddles[array_rand($riddles)]; 
    4646 
    47                 // Store the question for render output 
     47                // Store the question for output 
    4848                $this->question = $riddle[0]; 
    4949