]> source.dussan.org Git - redmine.git/commitdiff
code format clean up ApplicationHelper#link_to_issue
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 5 Feb 2014 03:24:07 +0000 (03:24 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 5 Feb 2014 03:24:07 +0000 (03:24 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@12808 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb

index 22a841478e5f78f2ad213d5dfbf9f1309b2c4a24..73fe2d3fb15cb6f051bf513982b7c71060786c63 100644 (file)
@@ -80,7 +80,8 @@ module ApplicationHelper
       end
     end
     only_path = options[:only_path].nil? ? true : options[:only_path]
-    s = link_to text, issue_path(issue, :only_path => only_path), :class => issue.css_classes, :title => title
+    s = link_to(text, issue_path(issue, :only_path => only_path),
+                :class => issue.css_classes, :title => title)
     s << h(": #{subject}") if subject
     s = h("#{issue.project} - ") + s if options[:project]
     s