Changeset 3016 for trunk/system/libraries/Captcha.php
- Timestamp:
- 07/09/2008 04:10:48 PM (5 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Captcha.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Captcha.php
r3015 r3016 5 5 * $Id$ 6 6 * 7 * @package C ore7 * @package Captcha 8 8 * @author Kohana Team 9 9 * @copyright (c) 2007-2008 Kohana Team … … 30 30 31 31 /** 32 * Constructs and returns a new Captcha object. 33 * 34 * @param array configuration settings 35 * @return object 36 */ 37 public function factory($config = array()) 38 { 39 return new Captcha($config); 40 } 41 42 /** 32 43 * Constructs a new Captcha object. 33 44 * 34 45 * @throws Kohana_Exception 35 * @param stringconfiguration settings46 * @param array configuration settings 36 47 * @return void 37 48 */
