diff options
-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) |