Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: 1.9.1
-
Fix Version/s: 1.9.2
-
Component/s: Zend_Validate
-
Labels:None
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:
$this->_tokenstring = (string) $token;
Should be:
$this->_tokenString = (string) $token;
Solved in SVN r17683