ZF-5177: Zend_Form_Element_File should reimplement add/setErrorXxx functions to throw exception
Description
Zend_Form_Element_File override getErrors(), hasErrors() and getMessages() to transfer the method to the adapter. However, the following functions are not overridden.
addError()
addErrors()
addErrorMessage()
addErrorMessages()
setErrors()
setErrorMessages()
clearErrorMessages()
So for example "$errors = $form->getErrors();" after "$form->addError($msg);" does not work as expected but returns nothing.
Please make them work as expected, or just override those functions to throw the exception (if you do not have much time)
Comments
Posted by Thomas Weidner (thomas) on 2008-12-07T10:13:03.000+0000
Duplication of ZF-5051