ZF-7643: Empty token value in Zend_Validate_Identical::NOT_SAME
Description
Error which is provided when given values are not identical does not contains basic value of comparison (mean as "token"). It is because of typo bug in "Zend/Validate/Identical.php" file, "setToken" method, line 84.
There is: bq. $this->_tokenstring = (string) $token;
Should be: bq. $this->_tokenString = (string) $token;
Comments
Posted by Satoru Yoshida (satoruyoshida) on 2009-08-20T02:20:39.000+0000
Solved in SVN r17683