##// END OF EJS Templates
Rails3: replace » of breadcrumb() at ApplicationHelper to hexadecimal UTF-8 strings and use String#html_safe....
Toshi MARUYAMA -
r6399:a12cf0fb5767
parent child
Show More
@@ -396,7 +396,7 module ApplicationHelper
396 396
397 397 def breadcrumb(*args)
398 398 elements = args.flatten
399 elements.any? ? content_tag('p', args.join(' » ') + ' » ', :class => 'breadcrumb') : nil
399 elements.any? ? content_tag('p', (args.join(" \xc2\xbb ") + " \xc2\xbb ").html_safe, :class => 'breadcrumb') : nil
400 400 end
401 401
402 402 def other_formats_links(&block)
General Comments 0
You need to be logged in to leave comments. Login now