##// END OF EJS Templates
replace « and » at app/views/activities/index.html.erb to hexadecimal UTF-8 strings (#4796)....
Toshi MARUYAMA -
r6395:68e560fbb055
parent child
Show More
@@ -21,12 +21,12
21 21 <%= content_tag('p', l(:label_no_data), :class => 'nodata') if @events_by_day.empty? %>
22 22
23 23 <div style="float:left;">
24 <%= link_to_content_update('&#171; ' + l(:label_previous),
24 <%= link_to_content_update("\xc2\xab " + l(:label_previous),
25 25 params.merge(:from => @date_to - @days - 1),
26 26 :title => l(:label_date_from_to, :start => format_date(@date_to - 2*@days), :end => format_date(@date_to - @days - 1))) %>
27 27 </div>
28 28 <div style="float:right;">
29 <%= link_to_content_update(l(:label_next) + ' &#187;',
29 <%= link_to_content_update(l(:label_next) + " \xc2\xbb",
30 30 params.merge(:from => @date_to + @days - 1),
31 31 :title => l(:label_date_from_to, :start => format_date(@date_to), :end => format_date(@date_to + @days - 1))) unless @date_to >= Date.today %>
32 32 </div>
General Comments 0
You need to be logged in to leave comments. Login now