BSPrinterRootForm's marked as ::setUpload() would not have the right enctype set
[isso.git] / PrinterRootForm.php
index f5f42a55f320e119ee87bb5992e6f72196513fa9..b347283360547b49678519c329f2f13f1607abc0 100644 (file)
@@ -138,7 +138,7 @@ class BSPrinterRootForm extends BSPrinterRootAbstract
        {
                array_push($this->children, new BSPrinterElement('hidden', 'do', $this->do));
                
-               return "\n<form name=\"" . $this->name . "\" action=\"" . $this->action . "\" method=\"post\"" . ($this->upload ? ' enctype="mime/multi-part"' : '') . ">\n" . $this->_paintChildren() . "\n</form>";
+               return "\n<form name=\"" . $this->name . "\" action=\"" . $this->action . "\" method=\"post\"" . ($this->upload ? ' enctype="multipart/form-data"' : '') . ">\n" . $this->_paintChildren() . "\n</form>";
        }
 }