diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-11-28 11:13:52 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-11-28 11:13:52 +0000 |
commit | b2db1f5f193d577ac5319778575bff2c792067f7 (patch) | |
tree | b5d59b45ac677dfed8ef090a1ec234d0f224f3b2 | |
parent | ae045cdac99e9ed54f70128b63853d8899080cb1 (diff) | |
download | redmine-b2db1f5f193d577ac5319778575bff2c792067f7.tar.gz redmine-b2db1f5f193d577ac5319778575bff2c792067f7.zip |
Removed a space after spacer (#21258).
git-svn-id: http://svn.redmine.org/redmine/trunk@14898 e93f8b46-1217-0410-a6f0-8f06a7374b81
-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 83ded7b40..053269a58 100644 --- a/lib/redmine/pagination.rb +++ b/lib/redmine/pagination.rb @@ -185,7 +185,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', '...'), :class => 'spacer') end if page == paginator.page html << content_tag('li', content_tag('span', page.to_s), :class => 'current') |