summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-10-06 11:02:24 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-10-06 11:02:24 +0000
commite76d89219b78f2c6f06e119f046da20bdf6f10bb (patch)
tree0b227d3462df6d6525c4fe27432f77c2fca2cbe4 /app
parenta84f877099e74b7377433e9a45877893942220fd (diff)
downloadredmine-e76d89219b78f2c6f06e119f046da20bdf6f10bb.tar.gz
redmine-e76d89219b78f2c6f06e119f046da20bdf6f10bb.zip
Rails3: helper: replace &#8230; of page_header_title at ApplicationHelper to hexadecimal UTF-8 strings
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7582 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-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 25592c46f..f553641bb 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -415,7 +415,7 @@ module ApplicationHelper
root = ancestors.shift
b << link_to_project(root, {:jump => current_menu_item}, :class => 'root')
if ancestors.size > 2
- b << '&#8230;'
+ b << "\xe2\x80\xa6"
ancestors = ancestors[-2, 2]
end
b += ancestors.collect {|p| link_to_project(p, {:jump => current_menu_item}, :class => 'ancestor') }