Files
danbooru/app/presenters/post_set_presenters/wiki_page.rb
2013-03-12 13:00:01 -04:00

16 lines
286 B
Ruby

module PostSetPresenters
class WikiPage < Post
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