##// END OF EJS Templates
Fixed: Can't attach more than 1 file on IE 6 and 7 (#10115)....
Jean-Philippe Lang -
r8660:d57fbc9512cc
parent child
Show More
@@ -187,7 +187,7 function addFileField() {
187 187 var fields = $('attachments_fields');
188 188 if (fields.childElements().length >= 10) return false;
189 189 fileFieldCount++;
190 var s = document.createElement("span");
190 var s = new Element('span');
191 191 s.update(fields.down('span').innerHTML);
192 192 s.down('input.file').name = "attachments[" + fileFieldCount + "][file]";
193 193 s.down('input.description').name = "attachments[" + fileFieldCount + "][description]";
General Comments 0
You need to be logged in to leave comments. Login now