diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-06 00:50:14 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-06 00:50:14 +0000 |
commit | 9da89fd4db25872e4eed5bddd735b219f4576d30 (patch) | |
tree | 0b92464f9082376d5a785a9ef19fc4eaf0794eb0 /app/views/search | |
parent | 4b83908b55953e7fd57d001edf7b70c916eb0edb (diff) | |
download | redmine-9da89fd4db25872e4eed5bddd735b219f4576d30.tar.gz redmine-9da89fd4db25872e4eed5bddd735b219f4576d30.zip |
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
Diffstat (limited to 'app/views/search')
-rw-r--r-- | app/views/search/index.rhtml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app/views/search/index.rhtml b/app/views/search/index.rhtml index 08acb2857..d21aadc68 100644 --- a/app/views/search/index.rhtml +++ b/app/views/search/index.rhtml @@ -37,12 +37,14 @@ <p><center> <% if @pagination_previous_date %> -<%= link_to_content_update('« ' + l(:label_previous), - params.merge(:previous => 1, :offset => @pagination_previous_date.strftime("%Y%m%d%H%M%S"))) %> +<%= link_to_content_update("\xc2\xab " + l(:label_previous), + params.merge(:previous => 1, + :offset => @pagination_previous_date.strftime("%Y%m%d%H%M%S"))) %> <% end %> <% if @pagination_next_date %> -<%= link_to_content_update(l(:label_next) + ' »', - 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> |