diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/news_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/news_controller.rb b/app/controllers/news_controller.rb index 50c0489f4..e1ef1c3ec 100644 --- a/app/controllers/news_controller.rb +++ b/app/controllers/news_controller.rb @@ -58,7 +58,7 @@ class NewsController < ApplicationController end def show - @comments = @news.comments + @comments = @news.comments.to_a @comments.reverse! if User.current.wants_comments_in_reverse_order? end |