Files
danbooru/app/presenters/post_set_presenters/wiki_page.rb
2013-03-19 23:10:10 +11:00

18 lines
342 B
Ruby

module PostSetPresenters
class WikiPage < Post
def posts
@post_set.posts
rescue ActiveRecord::StatementInvalid, PGError
[]
end
def post_previews_html(template)
result = super(template)
if result =~ /Nobody here but us chickens/
result = ""
end
result.html_safe
end
end
end