replace « and » at app/views/search/index.rhtml to hexadecimal UTF-8 strings (#4796).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6413 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-08-06 00:50:14 +00:00
parent 4b83908b55
commit 9da89fd4db
1 changed files with 6 additions and 4 deletions

View File

@ -37,12 +37,14 @@
<p><center> <p><center>
<% if @pagination_previous_date %> <% if @pagination_previous_date %>
<%= link_to_content_update('&#171; ' + l(:label_previous), <%= link_to_content_update("\xc2\xab " + l(:label_previous),
params.merge(:previous => 1, :offset => @pagination_previous_date.strftime("%Y%m%d%H%M%S"))) %>&nbsp; params.merge(:previous => 1,
:offset => @pagination_previous_date.strftime("%Y%m%d%H%M%S"))) %>&nbsp;
<% end %> <% end %>
<% if @pagination_next_date %> <% if @pagination_next_date %>
<%= link_to_content_update(l(:label_next) + ' &#187;', <%= link_to_content_update(l(:label_next) + " \xc2\xbb",
params.merge(:previous => nil, :offset => @pagination_next_date.strftime("%Y%m%d%H%M%S"))) %> params.merge(:previous => nil,
:offset => @pagination_next_date.strftime("%Y%m%d%H%M%S"))) %>
<% end %> <% end %>
</center></p> </center></p>