Changeset 3024
- Timestamp:
- 07/10/08 01:21:07 (1 month ago)
- Files:
-
- trunk/system/config/captcha.php (modified) (1 diff)
- trunk/system/libraries/drivers/Captcha/Basic.php (modified) (3 props)
- trunk/system/libraries/drivers/Captcha/Math.php (added)
- trunk/system/libraries/drivers/Captcha/Riddle.php (modified) (1 diff, 3 props)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/system/config/captcha.php
r3016 r3024 8 8 * 9 9 * Group Options: 10 * style - Captcha type, e.g. basic, riddle10 * style - Captcha type, e.g. basic, math, riddle 11 11 * width - Width of the Captcha image 12 12 * 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 45 45 $riddle = $riddles[array_rand($riddles)]; 46 46 47 // Store the question for renderoutput47 // Store the question for output 48 48 $this->question = $riddle[0]; 49 49
