summaryrefslogtreecommitdiffstats
path: root/app/views/boards
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2016-11-19 08:53:02 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2016-11-19 08:53:02 +0000
commit8aa647addb9a43de195bf102560b6e540a056594 (patch)
tree0229552e24fd696957864e1ecc1258a89b91e829 /app/views/boards
parent7ee5e95f1432153008813484e075d7dce238be5f (diff)
downloadredmine-8aa647addb9a43de195bf102560b6e540a056594.tar.gz
redmine-8aa647addb9a43de195bf102560b6e540a056594.zip
Use the regular "icon icon-*" in other pages (#24313).
git-svn-id: http://svn.redmine.org/redmine/trunk@15978 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/boards')
-rw-r--r--app/views/boards/show.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/boards/show.html.erb b/app/views/boards/show.html.erb
index b032a5939..1f58acdc8 100644
--- a/app/views/boards/show.html.erb
+++ b/app/views/boards/show.html.erb
@@ -36,7 +36,7 @@
<tbody>
<% @topics.each do |topic| %>
<tr id="message-<%= topic.id %>" class="message <%= cycle 'odd', 'even' %> <%= topic.sticky? ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>">
- <td class="subject"><%= link_to topic.subject, board_message_path(@board, topic) %></td>
+ <td class="subject icon <%= 'icon-sticky' if topic.sticky? %> <%= 'icon-locked' if topic.locked? %>"><%= link_to topic.subject, board_message_path(@board, topic) %></td>
<td class="author"><%= link_to_user(topic.author) %></td>
<td class="created_on"><%= format_time(topic.created_on) %></td>
<td class="reply-count"><%= topic.replies_count %></td>