summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-10-06 11:03:03 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-10-06 11:03:03 +0000
commiteadbf2107f965ade5bebc1a31f700b19fd0c7ca4 (patch)
tree6550300442fe0ade2f00254bca0ac812f4b15018
parente76d89219b78f2c6f06e119f046da20bdf6f10bb (diff)
downloadredmine-eadbf2107f965ade5bebc1a31f700b19fd0c7ca4.tar.gz
redmine-eadbf2107f965ade5bebc1a31f700b19fd0c7ca4.zip
Rails3: helper: replace &#187; of page_header_title at ApplicationHelper to hexadecimal UTF-8 strings
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7583 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/helpers/application_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index f553641bb..0f52a0dcd 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -421,7 +421,7 @@ module ApplicationHelper
b += ancestors.collect {|p| link_to_project(p, {:jump => current_menu_item}, :class => 'ancestor') }
end
b << h(@project)
- b.join(' &#187; ')
+ b.join(" \xc2\xbb ")
end
end