ZF-4633: Zend_Form_Element_File it not html valid
Description
It generates
FIX:
Index: Zend/View/Helper/FormFile.php
--- Zend/View/Helper/FormFile.php (revision 12002) +++ Zend/View/Helper/FormFile.php (working copy) @@ -52,6 +52,7 @@ */ public function formFile($name, $attribs = null) { + unset($attribs['helper']); $info = $this->_getInfo($name, null, $attribs); extract($info); // name, id, value, attribs, options, listsep, disable
```
Comments
Posted by Thomas Weidner (thomas) on 2008-10-19T13:40:28.000+0000
Fixed with r12021
Posted by Wil Sinclair (wil) on 2008-11-13T14:10:08.000+0000
Changing issues in preparation for the 1.7.0 release.