diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-10-06 15:02:14 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-10-06 15:02:14 +0000 |
commit | c273282362939301ac15fd90296d3511e252a40e (patch) | |
tree | 1702d6975c3df9802a1485049a66c3092d96aa1d /app/helpers | |
parent | 1e773f4e6f53c0c6dc64554830c5b14b7903fe46 (diff) | |
download | redmine-c273282362939301ac15fd90296d3511e252a40e.tar.gz redmine-c273282362939301ac15fd90296d3511e252a40e.zip |
Rails3: helper: use html_safe at page_header_title of ApplicationHelper
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7587 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/application_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 1cb93d1d4..c6d57ade9 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -429,7 +429,7 @@ module ApplicationHelper b += ancestors.collect {|p| link_to_project(p, {:jump => current_menu_item}, :class => 'ancestor') } end b << h(@project) - b.join(" \xc2\xbb ") + b.join(" \xc2\xbb ").html_safe end end |