]> source.dussan.org Git - redmine.git/commitdiff
Rails3: helper: use html_safe at page_header_title of ApplicationHelper
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 6 Oct 2011 15:02:14 +0000 (15:02 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 6 Oct 2011 15:02:14 +0000 (15:02 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7587 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/application_helper.rb

index 1cb93d1d433e4c43ec91dc6e19a5806f9c4c2ccd..c6d57ade9bc737de7a357cec06b468eefccc1af0 100644 (file)
@@ -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