AFAIK there is not something like NotIdentical. Have you tried your own validator this way ?:
class My_Validate_NotIdentical extends Zend_Validate_Identical
{
public function isValid($value)
{
return !parent::isValid($value);
}
}
This is a simple solution - you must also change the verification messages, etc.
source
share