From 84e7e00dde90ce638c68e31d2efd00cd012f1932 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Fri, 14 Dec 2012 16:18:09 +0100 Subject: [PATCH] Fix whitespace in pagination footer --- .../src/main/webapp/WEB-INF/app/helpers/application_helper.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb b/sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb index df44897443b..bde14bf5859 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/helpers/application_helper.rb @@ -729,6 +729,7 @@ module ApplicationHelper html += ' | ' if max_pages > 20 && start_page > 1 html += (current_page!=1 ? yield(message('paging_first'), 1) : message('paging_first')) + html += ' ' end html += (pagination.previous? ? yield(message('paging_previous'), current_page-1) : message('paging_previous')) html += ' ' -- 2.39.5