From c6c1da5de06a66fad94a659716e3a644aa94791b Mon Sep 17 00:00:00 2001 From: albert Date: Sat, 2 Mar 2013 20:40:03 -0500 Subject: [PATCH] fix --- 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 be2d7b7e7..a4c73aa32 100644 --- a/app/logical/post_sets/post.rb +++ b/app/logical/post_sets/post.rb @@ -47,7 +47,7 @@ module PostSets end @posts ||= begin - ::Post.tag_match(tag_string).paginate(page, :count => ::Post.fast_count(tag_string), :limit => per_page) + temp = ::Post.tag_match(tag_string).paginate(page, :count => ::Post.fast_count(tag_string), :limit => per_page) temp.all temp end