fix no posts appearing on intro page

This commit is contained in:
Toks 2013-06-28 10:05:30 -04:00
parent 4e31d8f043
commit 2e554ed100

View File

@ -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