summaryrefslogtreecommitdiffstats
path: root/app/views/boards/show.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/boards/show.html.erb')
-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 1f58acdc8..4a0a588e9 100644
--- a/app/views/boards/show.html.erb
+++ b/app/views/boards/show.html.erb
@@ -35,7 +35,7 @@
</tr></thead>
<tbody>
<% @topics.each do |topic| %>
- <tr id="message-<%= topic.id %>" class="message <%= cycle 'odd', 'even' %> <%= topic.sticky? ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>">
+ <tr id="message-<%= topic.id %>" class="message <%= topic.sticky? ? 'sticky' : '' %> <%= topic.locked? ? 'locked' : '' %>">
<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>