]> source.dussan.org Git - redmine.git/commitdiff
Fixed: custom fields empty on issue/edit (broken by r1086).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Jan 2008 19:45:08 +0000 (19:45 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Jan 2008 19:45:08 +0000 (19:45 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1089 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/issues/_form_custom_fields.rhtml

index 291b5d4def4369ad1639f16fd746f616477c77ed..e5a98e30e44d654e9b1747813e6374576d53d245 100644 (file)
@@ -1,9 +1,11 @@
 <div class="splitcontentleft">
-<% values.each_with_index do |value, i| %>
-       <p><%= custom_field_tag_with_label value %></p>
-    <% if i >= values.size / 2 - 1 %>
+<% i = 1 %>
+<% for @custom_value in values %>
+       <p><%= custom_field_tag_with_label @custom_value %></p>
+    <% if i >= values.size / 2 %>
 </div><div class="splitcontentright">
     <% end %>
+    <% i += 1 %>
 <% end %>
 </div>
 <div style="clear:both;"> </div>