mirror of
https://github.com/moebooru/moebooru
synced 2025-08-22 01:47:48 +00:00
branch : moe extra : convert_revision : svn%3A2d28d66d-8d94-df11-8c86-00306ef368cb/trunk/moe%405
10 lines
262 B
Ruby
10 lines
262 B
Ruby
module WikiHelper
|
|
def linked_from(to)
|
|
links = to.find_pages_that_link_to_this.map do |page|
|
|
link_to(h(page.pretty_title), :controller => "wiki", :action => "show", :title => page.title)
|
|
end.join(", ")
|
|
|
|
links.empty? ? "None" : links
|
|
end
|
|
end
|