From 23f96f7608ecdeeda54fb388f1c72cf61994fd13 Mon Sep 17 00:00:00 2001 From: Toks Date: Sun, 6 Oct 2013 17:37:31 -0400 Subject: [PATCH] fixes #2000 --- app/logical/post_sets/post.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/logical/post_sets/post.rb b/app/logical/post_sets/post.rb index 533e5264c..b843a907a 100644 --- a/app/logical/post_sets/post.rb +++ b/app/logical/post_sets/post.rb @@ -65,7 +65,7 @@ module PostSets @posts ||= begin if raw - temp = ::Post.raw_tag_match(tag_string).paginate(page, :count => ::Post.fast_count(tag_string), :limit => per_page) + temp = ::Post.raw_tag_match(tag_string).order("posts.id DESC").paginate(page, :count => ::Post.fast_count(tag_string), :limit => per_page) else temp = ::Post.tag_match(tag_string).paginate(page, :count => ::Post.fast_count(tag_string), :limit => per_page) end