diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-02 17:40:03 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-02 17:40:03 +0000 |
commit | bbba385198cf7d704c6400d36b061dcd58becfec (patch) | |
tree | fc5b204ff0c6f22975cbe517fbd095746dfe46c1 /app/helpers | |
parent | f488ee8b0a2fc7df9d68c33b9bfa2be271b0fc4b (diff) | |
download | redmine-bbba385198cf7d704c6400d36b061dcd58becfec.tar.gz redmine-bbba385198cf7d704c6400d36b061dcd58becfec.zip |
Missing html_safe.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8474 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/application_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 8ea265d84..24da00073 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -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 |