changeset 1152:5d01a630b843 redmine-2.2-integration

Fix to prior commit
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 15 Jan 2013 12:35:27 +0000
parents a3cb7444c9bd
children e1f00c0ed8ff
files app/helpers/application_helper.rb
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/app/helpers/application_helper.rb	Tue Jan 15 12:26:20 2013 +0000
+++ b/app/helpers/application_helper.rb	Tue Jan 15 12:35:27 2013 +0000
@@ -492,13 +492,13 @@
           ancestors = ancestors[-2, 2]
         end
         b += ancestors.collect {|p| link_to_project(p, {:jump => current_menu_item}, :class => 'ancestor') }
-        b = b.join(' &#187; ')
-        b << (' &#187;')
+        b = b.join(' &#187; ').html_safe
+        b << (' &#187;'.html_safe)
       end
 
       pname << h(@project)
 
-      a = [pname, b.html_safe]
+      a = [pname, b]
 
     end
   end