summaryrefslogtreecommitdiffstats
path: root/app/views/activities/index.html.erb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-21 05:17:53 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-08-21 05:17:53 +0000
commit68e560fbb0553de9b9e720ed48c206d59809d970 (patch)
tree4f859a396ea4771e3f5406330afd128833bc7f9c /app/views/activities/index.html.erb
parentaa84f622c7a5cf80dba6425a512a9e72dda05634 (diff)
downloadredmine-68e560fbb0553de9b9e720ed48c206d59809d970.tar.gz
redmine-68e560fbb0553de9b9e720ed48c206d59809d970.zip
replace &#171; and &#187; 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
Diffstat (limited to 'app/views/activities/index.html.erb')
-rw-r--r--app/views/activities/index.html.erb4
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('&#171; ' + 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) + ' &#187;',
+<%= 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>