]> source.dussan.org Git - redmine.git/commitdiff
Fixed: Add Another file to ticket doesn't work in IE (broken by r3750).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 25 Jul 2010 10:34:55 +0000 (10:34 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 25 Jul 2010 10:34:55 +0000 (10:34 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3879 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/attachments/_form.rhtml
public/javascripts/application.js

index 7702f92e214b5a201c877adb3b997ee16de79904..6d387d1c2e411bcf17418ebf1d7234908dd20e9a 100644 (file)
@@ -1,6 +1,5 @@
 <span id="attachments_fields">
-<%= file_field_tag 'attachments[1][file]', :size => 30, :id => nil  -%>
-<label class="inline"><span id="attachment_description_label_content"><%= l(:label_optional_description) %></span><%= text_field_tag 'attachments[1][description]', '', :size => 60, :id => nil %>
+<%= file_field_tag 'attachments[1][file]', :size => 30, :id => nil  -%><label class="inline"><span id="attachment_description_label_content"><%= l(:label_optional_description) %></span><%= text_field_tag 'attachments[1][description]', '', :size => 60, :id => nil %>
 </label>
 </span>
 <br />
index 612739f5c6fbc031ef8fc7dc0dc7fc7e2e214bdc..989065b3af9df3b659401bce9967bb0df1e0b89c 100644 (file)
@@ -52,7 +52,7 @@ function addFileField() {
     d.type = "text";
     d.name = "attachments[" + fileFieldCount + "][description]";
     d.size = 60;
-    var dLabel = document.createElement("label");
+    var dLabel = new Element('label');
     dLabel.addClassName('inline');
     // Pulls the languge value used for Optional Description
     dLabel.update($('attachment_description_label_content').innerHTML)