Re: [fw-general] Zend_Form / Identical Validator and comparing form fields

2009-01-05 Thread webPragmatist
ntext)) { > if (isset($context['password']) && ($value == > $context['password'])) { > return true; > } > } elseif (is_string($context) && ($value == $context)) { > re

[fw-general] Zend_Form / Identical Validator and comparing form fields

2009-01-05 Thread webPragmatist
Is it possible to pass the POST variable(s) once instead of twice when using the identical validator? What I have is a method in a model that checks a param which is passed when the form is generated in the controller. Then the controller (if the request is post) runs isValid($_POST). This works