From d957a1eba4d8faf97a3943d89ba681d8e06b03c9 Mon Sep 17 00:00:00 2001 From: albert Date: Sat, 15 Oct 2011 22:19:03 -0400 Subject: [PATCH] fixes #130: Comments page shows comments in backwards order --- app/views/comments/index_by_post.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/comments/index_by_post.html.erb b/app/views/comments/index_by_post.html.erb index 31017ce93..42c422107 100644 --- a/app/views/comments/index_by_post.html.erb +++ b/app/views/comments/index_by_post.html.erb @@ -11,7 +11,7 @@
<%= link_to(image_tag(post.preview_file_url), post_path(post)) %>
- <%= render "comments/partials/index/list", :post => post, :comments => post.comments.recent.reverse, :show_header => true %> + <%= render "comments/partials/index/list", :post => post, :comments => post.comments.recent, :show_header => true %>
<% end %>