##// END OF EJS Templates
replace « and » at app/views/search/index.rhtml to hexadecimal UTF-8 strings (#4796)....
Toshi MARUYAMA -
r6293:9da89fd4db25
parent child
Show More
@@ -37,12 +37,14
37
37
38 <p><center>
38 <p><center>
39 <% if @pagination_previous_date %>
39 <% if @pagination_previous_date %>
40 <%= link_to_content_update('&#171; ' + l(:label_previous),
40 <%= link_to_content_update("\xc2\xab " + l(:label_previous),
41 params.merge(:previous => 1, :offset => @pagination_previous_date.strftime("%Y%m%d%H%M%S"))) %>&nbsp;
41 params.merge(:previous => 1,
42 :offset => @pagination_previous_date.strftime("%Y%m%d%H%M%S"))) %>&nbsp;
42 <% end %>
43 <% end %>
43 <% if @pagination_next_date %>
44 <% if @pagination_next_date %>
44 <%= link_to_content_update(l(:label_next) + ' &#187;',
45 <%= link_to_content_update(l(:label_next) + " \xc2\xbb",
45 params.merge(:previous => nil, :offset => @pagination_next_date.strftime("%Y%m%d%H%M%S"))) %>
46 params.merge(:previous => nil,
47 :offset => @pagination_next_date.strftime("%Y%m%d%H%M%S"))) %>
46 <% end %>
48 <% end %>
47 </center></p>
49 </center></p>
48
50
General Comments 0
You need to be logged in to leave comments. Login now