From: Michael M Slusarz Date: Mon, 13 Apr 2009 20:40:37 +0000 (-0600) Subject: Fix missing DOM ID. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=13451664cc6c11a1be1f9d35834e504b7475c6a9;p=horde.git Fix missing DOM ID. --- diff --git a/imp/js/src/compose.js b/imp/js/src/compose.js index 6fbb430b3..d81367604 100644 --- a/imp/js/src/compose.js +++ b/imp/js/src/compose.js @@ -239,7 +239,7 @@ var ImpCompose = { if (lastRow) { td = new Element('TD', { align: 'left' }).insert(new Element('STRONG').insert(IMP.text.compose_file + ' ' + (usedFields + 1) + ':')).insert(' ') - td.insert(new Element('INPUT', { type: 'file', name: 'upload_' + (usedFields + 1), size: 25 })); + td.insert(new Element('INPUT', { type: 'file', id: 'upload_' + (usedFields + 1), name: 'upload_' + (usedFields + 1), size: 25 })); newRow = new Element('TR', { id: 'attachment_row_' + (usedFields + 1) }).insert(td);