]> source.dussan.org Git - redmine.git/commitdiff
replace « and » at app/views/search/index.rhtml to hexadecimal UTF-8 string...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 6 Aug 2011 00:50:14 +0000 (00:50 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 6 Aug 2011 00:50:14 +0000 (00:50 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6413 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/search/index.rhtml

index 08acb2857f89932cc182ed9aea2547b7a9300dc7..d21aadc68a3becb21d50a06b23fb1cfc6a74f694 100644 (file)
 
 <p><center>
 <% if @pagination_previous_date %>
-<%= link_to_content_update('&#171; ' + l(:label_previous),
-      params.merge(:previous => 1, :offset => @pagination_previous_date.strftime("%Y%m%d%H%M%S"))) %>&nbsp;
+<%= 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;
 <% end %>
 <% if @pagination_next_date %>
-<%= link_to_content_update(l(:label_next) + ' &#187;',
-      params.merge(:previous => nil, :offset => @pagination_next_date.strftime("%Y%m%d%H%M%S"))) %>
+<%= link_to_content_update(l(:label_next) + " \xc2\xbb",
+      params.merge(:previous => nil,
+                   :offset => @pagination_next_date.strftime("%Y%m%d%H%M%S"))) %>
 <% end %>
 </center></p>