From: Toshi MARUYAMA Date: Sun, 21 Aug 2011 05:17:53 +0000 (+0000) Subject: replace « and » at app/views/activities/index.html.erb to hexadecimal UTF... X-Git-Tag: 1.3.0~1446 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=68e560fbb0553de9b9e720ed48c206d59809d970;p=redmine.git replace « and » at app/views/activities/index.html.erb to hexadecimal UTF-8 strings (#4796). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6515 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/activities/index.html.erb b/app/views/activities/index.html.erb index 3b4fd00e2..1004e9f9e 100644 --- a/app/views/activities/index.html.erb +++ b/app/views/activities/index.html.erb @@ -21,12 +21,12 @@ <%= content_tag('p', l(:label_no_data), :class => 'nodata') if @events_by_day.empty? %>
-<%= link_to_content_update('« ' + l(:label_previous), +<%= link_to_content_update("\xc2\xab " + l(:label_previous), params.merge(:from => @date_to - @days - 1), :title => l(:label_date_from_to, :start => format_date(@date_to - 2*@days), :end => format_date(@date_to - @days - 1))) %>
-<%= link_to_content_update(l(:label_next) + ' »', +<%= link_to_content_update(l(:label_next) + " \xc2\xbb", params.merge(:from => @date_to + @days - 1), :title => l(:label_date_from_to, :start => format_date(@date_to), :end => format_date(@date_to + @days - 1))) unless @date_to >= Date.today %>