diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-12-05 11:16:34 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-12-05 11:16:34 +0000 |
commit | 5f35caa6bfb8115ce388ad112321aa6a1945f7f6 (patch) | |
tree | 6ba51f6d6091f6a29d4c549c3130efabc586b18c /lib/redmine | |
parent | c4ff59337bb6c64594e75bc83f46356f6b408b4c (diff) | |
download | redmine-5f35caa6bfb8115ce388ad112321aa6a1945f7f6.tar.gz redmine-5f35caa6bfb8115ce388ad112321aa6a1945f7f6.zip |
Replaced the 3 dots with an ellipsis sign.
git-svn-id: http://svn.redmine.org/redmine/trunk@14948 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine')
-rw-r--r-- | lib/redmine/pagination.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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') |