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
This commit is contained in:
parent
752e263d3a
commit
9f59538241
|
@ -45,7 +45,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<% n = 0 -%>
|
<% 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>
|
<td valign="top"><b><%=h value.custom_field.name %>:</b></td><td valign="top"><%= simple_format(h(show_value(value))) %></td>
|
||||||
<% n = n + 1
|
<% n = n + 1
|
||||||
if (n > 1)
|
if (n > 1)
|
||||||
|
|
Loading…
Reference in New Issue