ZF-11285: Problem with translator on Zend_File_Transfer_Adapter_Http
Description
On Adapter HTTP don't get the translator when I submit form with no files. The original class Zend_File_Transfer_Adapter_Http on line 138 and 139:
$validator->setFiles($temp)
->isValid($files, null);
I think need to change for this:
$validator->setTranslator($this->getTranslator())
->setFiles($temp)
->isValid($files, null);
Comments
Posted by Thomas Weidner (thomas) on 2011-08-25T21:46:29.000+0000
Fixed in ZF2 with GH-300