diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-21 05:17:53 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-21 05:17:53 +0000 |
commit | 68e560fbb0553de9b9e720ed48c206d59809d970 (patch) | |
tree | 4f859a396ea4771e3f5406330afd128833bc7f9c | |
parent | aa84f622c7a5cf80dba6425a512a9e72dda05634 (diff) | |
download | redmine-68e560fbb0553de9b9e720ed48c206d59809d970.tar.gz redmine-68e560fbb0553de9b9e720ed48c206d59809d970.zip |
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
-rw-r--r-- | app/views/activities/index.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
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? %> <div style="float:left;"> -<%= 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))) %> </div> <div style="float:right;"> -<%= 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 %> </div> |