From: Jean-Philippe Lang Date: Sat, 5 Dec 2015 11:16:34 +0000 (+0000) Subject: Replaced the 3 dots with an ellipsis sign. X-Git-Tag: 3.3.0~368 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5f35caa6bfb8115ce388ad112321aa6a1945f7f6;p=redmine.git Replaced the 3 dots with an ellipsis sign. git-svn-id: http://svn.redmine.org/redmine/trunk@14948 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/redmine/pagination.rb b/lib/redmine/pagination.rb index f1d05c761..f8d0ccd07 100644 --- a/lib/redmine/pagination.rb +++ b/lib/redmine/pagination.rb @@ -194,7 +194,7 @@ module Redmine previous = nil paginator.linked_pages.each do |page| if previous && previous != page - 1 - html << content_tag('li', content_tag('span', '...'), :class => 'spacer') + html << content_tag('li', content_tag('span', '…'.html_safe), :class => 'spacer') end if page == paginator.page html << content_tag('li', content_tag('span', page.to_s), :class => 'current')