This commit is contained in:
albert
2013-03-12 13:00:01 -04:00
parent 9446343bd7
commit 698c08f058

View File

@@ -3,5 +3,13 @@ module PostSetPresenters
def posts
@post_set.posts
end
def post_previews_html(template)
result = super(template)
if result =~ /Nobody here but us chickens/
result = ""
end
result.html_safe
end
end
end