ZF-9605: Validate the type of the value of input in Zend_Validate_Isbn:>isValid($value)
Description
Validate value of input. In Zend_Validate_Isbn:>isValid($value), as in others validators.
if (!is_string($value)) {
$this->_error(self::INVALID);
return false;
}
Comments
Posted by Thomas Weidner (thomas) on 2010-04-04T14:37:41.000+0000
Implemented with r21761