Browse Source

Missing html_safe.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8474 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.4.0
Jean-Philippe Lang 12 years ago
parent
commit
bbba385198
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      app/helpers/application_helper.rb

+ 2
- 2
app/helpers/application_helper.rb View File

@@ -85,8 +85,8 @@ module ApplicationHelper
s = link_to "#{h(issue.tracker)} ##{issue.id}", {:controller => "issues", :action => "show", :id => issue},
:class => issue.css_classes,
:title => title
s << ": #{h subject}" if subject
s = "#{h issue.project} - " + s if options[:project]
s << h(": #{subject}") if subject
s = h("#{issue.project} - ") + s if options[:project]
s
end


Loading…
Cancel
Save