import v2.0.0.0_RC3 | 2012-07-01

https://github.com/lucanos/CommunityID -> http://www.itadmins.net/archives/357
This commit is contained in:
2019-07-17 22:31:04 +02:00
parent 38c146901c
commit 2f397f01f7
2677 changed files with 296182 additions and 45159 deletions

View File

@ -27,7 +27,7 @@ require_once 'Zend/Text/Figlet.php';
/**
* Captcha based on figlet text rendering service
*
*
* Note that this engine seems not to like numbers
*
* @category Zend
@ -35,7 +35,7 @@ require_once 'Zend/Text/Figlet.php';
* @subpackage Adapter
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Figlet.php 16971 2009-07-22 18:05:45Z mikaelkael $
* @version $Id: Figlet.php 18951 2009-11-12 16:26:19Z alexander $
*/
class Zend_Captcha_Figlet extends Zend_Captcha_Word
{
@ -45,11 +45,11 @@ class Zend_Captcha_Figlet extends Zend_Captcha_Word
* @var Zend_Text_Figlet
*/
protected $_figlet;
/**
* Constructor
*
* @param null|string|array|Zend_Config $options
*
* @param null|string|array|Zend_Config $options
* @return void
*/
public function __construct($options = null)
@ -57,7 +57,7 @@ class Zend_Captcha_Figlet extends Zend_Captcha_Word
parent::__construct($options);
$this->_figlet = new Zend_Text_Figlet($options);
}
/**
* Generate new captcha
*
@ -66,7 +66,7 @@ class Zend_Captcha_Figlet extends Zend_Captcha_Word
public function generate()
{
$this->_useNumbers = false;
return parent::generate();
return parent::generate();
}
/**