summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/helpers/application_helper.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 22a841478..73fe2d3fb 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -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