]> source.dussan.org Git - redmine.git/commitdiff
shorten long line of WikiHelper
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 11 Oct 2020 12:56:52 +0000 (12:56 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sun, 11 Oct 2020 12:56:52 +0000 (12:56 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20136 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/wiki_helper.rb

index 6690b04fc1075a22b96ba9b0e7dba8fc2cd04bf9..04a9253c39675a487dff68f43d847de1302dd39b 100644 (file)
@@ -47,9 +47,16 @@ module WikiHelper
   end
 
   def wiki_page_breadcrumb(page)
-    breadcrumb(page.ancestors.reverse.collect {|parent|
-      link_to(h(parent.pretty_title), {:controller => 'wiki', :action => 'show', :id => parent.title, :project_id => parent.project, :version => nil})
-    })
+    breadcrumb(
+      page.ancestors.reverse.collect do |parent|
+        link_to(
+          h(parent.pretty_title),
+          {:controller => 'wiki', :action => 'show',
+           :id => parent.title, :project_id => parent.project,
+           :version => nil}
+        )
+      end
+    )
   end
 
   # Returns the path for the Cancel link when editing a wiki page