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

app/helpers/application_helper.rb

index 25592c46f3e9c6e825ee03a23fbb9a7371b6b1c6..f553641bbbe6e363aaebee2fbb31c7297406b5f9 100644 (file)
@@ -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') }