summaryrefslogtreecommitdiff
path: root/app/views/forums/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/forums/index.html.erb')
-rw-r--r--app/views/forums/index.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/forums/index.html.erb b/app/views/forums/index.html.erb
index 532484b..a30730a 100644
--- a/app/views/forums/index.html.erb
+++ b/app/views/forums/index.html.erb
@@ -18,7 +18,7 @@
<%= link_to f.name, f, id: "forum-#{f.id}"%>
<div class="item-info">
<% if last_thread = f.threads.last %>
- <% last_reply = Threadreply.where(forumthread: f.threads).order(:created_at).last %>
+ <% last_reply = Threadreply.where(forumthread: f.threads).order(:id).last %>
<% if last_reply && last_reply.created_at > last_thread.created_at %>
<% if last_reply.thread.can_read?(current_user) %>
<%= last_reply.author.name %>