From: Toshi MARUYAMA Date: Thu, 6 Oct 2011 15:02:14 +0000 (+0000) Subject: Rails3: helper: use html_safe at page_header_title of ApplicationHelper X-Git-Tag: 1.3.0~396 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c273282362939301ac15fd90296d3511e252a40e;p=redmine.git 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 --- 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