diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-06 00:50:35 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-06 00:50:35 +0000 |
commit | 26215554996ce1a8d026270a893f58e572cdefe8 (patch) | |
tree | 173efef8c8499e73f5d269b01a918061787df11c /app/views/wiki/show.rhtml | |
parent | 9da89fd4db25872e4eed5bddd735b219f4576d30 (diff) | |
download | redmine-26215554996ce1a8d026270a893f58e572cdefe8.tar.gz redmine-26215554996ce1a8d026270a893f58e572cdefe8.zip |
replace « and » at app/views/wiki/show.rhtml to hexadecimal UTF-8 strings (#4796).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6414 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wiki/show.rhtml')
-rw-r--r-- | app/views/wiki/show.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/wiki/show.rhtml b/app/views/wiki/show.rhtml index d4a050138..7e519c819 100644 --- a/app/views/wiki/show.rhtml +++ b/app/views/wiki/show.rhtml @@ -15,14 +15,14 @@ <% if @content.version != @page.content.version %> <p> - <%= link_to(('« ' + l(:label_previous)), + <%= link_to(("\xc2\xab " + l(:label_previous)), :action => 'show', :id => @page.title, :project_id => @page.project, :version => (@content.version - 1)) + " - " if @content.version > 1 %> <%= "#{l(:label_version)} #{@content.version}/#{@page.content.version}" %> <%= '(' + link_to('diff', :controller => 'wiki', :action => 'diff', :id => @page.title, :project_id => @page.project, :version => @content.version) + ')' if @content.version > 1 %> - - <%= link_to((l(:label_next) + ' »'), :action => 'show', + <%= link_to((l(:label_next) + " \xc2\xbb"), :action => 'show', :id => @page.title, :project_id => @page.project, :version => (@content.version + 1)) + " - " if @content.version < @page.content.version %> <%= link_to(l(:label_current_version), :action => 'show', :id => @page.title, :project_id => @page.project) %> |