From 2e554ed10019de7bafecb13dca7fb224493c405b Mon Sep 17 00:00:00 2001 From: Toks Date: Fri, 28 Jun 2013 10:05:30 -0400 Subject: [PATCH] fix no posts appearing on intro page --- app/logical/post_sets/intro.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/logical/post_sets/intro.rb b/app/logical/post_sets/intro.rb index b972e616e..7719e9e34 100644 --- a/app/logical/post_sets/intro.rb +++ b/app/logical/post_sets/intro.rb @@ -6,7 +6,7 @@ module PostSets def posts @posts ||= begin - temp = ::Post.tag_match("#{tag_string} fav_count:>3").paginate(page, :search_count => nil, :limit => 6) + temp = ::Post.tag_match("#{tag_string} favcount:>3").paginate(page, :search_count => nil, :limit => 6) temp.all temp end