From c273282362939301ac15fd90296d3511e252a40e Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Thu, 6 Oct 2011 15:02:14 +0000 Subject: [PATCH] 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 --- app/helpers/application_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5