]> source.dussan.org Git - redmine.git/commitdiff
Use #custom_field_values to display issue custom fields in email, just like on regula...
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Feb 2011 14:27:34 +0000 (14:27 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 20 Feb 2011 14:27:34 +0000 (14:27 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4892 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/mailer/_issue_text_html.rhtml
app/views/mailer/_issue_text_plain.rhtml

index 3b1812d98dc6a71c2c2c4726acc3b5a9c64c8b23..3d851d4428c99522fc9f322ee2393a8e8135eea8 100644 (file)
@@ -7,7 +7,7 @@
 <li><%=l(:field_assigned_to)%>: <%=h issue.assigned_to %></li>
 <li><%=l(:field_category)%>: <%=h issue.category %></li>
 <li><%=l(:field_fixed_version)%>: <%=h issue.fixed_version %></li>
-<% issue.custom_values.each do |c| %>
+<% issue.custom_field_values.each do |c| %>
   <li><%=h c.custom_field.name %>: <%=h show_value(c) %></li>
 <% end %>
 </ul>
index 6b87c18087e72167e76f12dbe38ff8c9d7ab5004..bea2a5813aabaced070d9340d9aff492dc6b03c8 100644 (file)
@@ -7,7 +7,7 @@
 <%=l(:field_assigned_to)%>: <%= issue.assigned_to %>
 <%=l(:field_category)%>: <%= issue.category %>
 <%=l(:field_fixed_version)%>: <%= issue.fixed_version %>
-<% issue.custom_values.each do |c| %><%= c.custom_field.name %>: <%= show_value(c) %>
+<% issue.custom_field_values.each do |c| %><%= c.custom_field.name %>: <%= show_value(c) %>
 <% end %>
 
 <%= issue.description %>