summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-02-13 17:29:49 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-02-13 17:29:49 +0000
commitbbc8d3d76877e27ae7fb41892e2250e6c60c57d1 (patch)
treeaacd12d6b83779f46a665f128ff3a4b1f96d2173 /app
parentb8eddf201439beb48e95cf252d71489961c7024b (diff)
downloadredmine-bbc8d3d76877e27ae7fb41892e2250e6c60c57d1.tar.gz
redmine-bbc8d3d76877e27ae7fb41892e2250e6c60c57d1.zip
Removes invalid css class on issue details (#2733).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2461 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/issues/show.rhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml
index 8742ce60f..2d947d047 100644
--- a/app/views/issues/show.rhtml
+++ b/app/views/issues/show.rhtml
@@ -23,7 +23,7 @@
<td style="width:15%" class="start-date"><b><%=l(:field_start_date)%>:</b></td><td style="width:35%"><%= format_date(@issue.start_date) %></td>
</tr>
<tr>
- <td class="priority"><b><%=l(:field_priority)%>:</b></td><td class="priority priority-<%= @issue.priority.name %>"><%= @issue.priority.name %></td>
+ <td class="priority"><b><%=l(:field_priority)%>:</b></td><td class="priority"><%= @issue.priority.name %></td>
<td class="due-date"><b><%=l(:field_due_date)%>:</b></td><td class="due-date"><%= format_date(@issue.due_date) %></td>
</tr>
<tr>