diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-05-10 10:36:40 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-05-10 10:36:40 +0000 |
commit | 9f59538241ab0cfdd0f6275338b2fbff2a347811 (patch) | |
tree | fb8e59c51bc2bb5767c36be409399e041a619fca /app | |
parent | 752e263d3a4272253d11698bccc577ae0683b0b6 (diff) | |
download | redmine-9f59538241ab0cfdd0f6275338b2fbff2a347811.tar.gz redmine-9f59538241ab0cfdd0f6275338b2fbff2a347811.zip |
Fixes consistency of custom fields display on the issue detail view (#3190).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2724 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/issues/show.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index bd0eec41f..c23acdf83 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -45,7 +45,7 @@ </tr> <tr> <% n = 0 -%> -<% @issue.custom_values.each do |value| -%> +<% @issue.custom_field_values.each do |value| -%> <td valign="top"><b><%=h value.custom_field.name %>:</b></td><td valign="top"><%= simple_format(h(show_value(value))) %></td> <% n = n + 1 if (n > 1) |