Browse Source

[ZF-7643]Empty token value in Zend_Validate_Identical::NOT_SAME

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@17683 44c647ce-9c0f-0410-b52a-842ac1e357ba
yoshida@zend.co.jp 16 years ago
parent
commit
334290fadf
1 changed files with 2 additions and 2 deletions
  1. 2 2
      library/Zend/Validate/Identical.php

+ 2 - 2
library/Zend/Validate/Identical.php

@@ -19,7 +19,7 @@
  * @version    $Id$
  */
 
-/** Zend_Validate_Abstract */
+/** @see Zend_Validate_Abstract */
 require_once 'Zend/Validate/Abstract.php';
 
 /**
@@ -81,7 +81,7 @@ class Zend_Validate_Identical extends Zend_Validate_Abstract
      */
     public function setToken($token)
     {
-        $this->_tokenstring = (string) $token;
+        $this->_tokenString = (string) $token;
         $this->_token       = $token;
         return $this;
     }