summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2016-06-29 15:45:10 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2016-06-29 15:45:10 +0000
commit4bf74a536f72aa4f3d49cc875c16ccab472dbfa2 (patch)
tree317eaf4244b45d9915df0d1cc7f0cfe523784019
parent06818eb3b58898fda6baf3d3c3c457c27ab154ec (diff)
downloadredmine-4bf74a536f72aa4f3d49cc875c16ccab472dbfa2.tar.gz
redmine-4bf74a536f72aa4f3d49cc875c16ccab472dbfa2.zip
Adds missing class and removes space between previous/next links (#23192).
git-svn-id: http://svn.redmine.org/redmine/trunk@15590 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/views/activities/index.html.erb5
1 files changed, 2 insertions, 3 deletions
diff --git a/app/views/activities/index.html.erb b/app/views/activities/index.html.erb
index a135f97ff..f1a25e664 100644
--- a/app/views/activities/index.html.erb
+++ b/app/views/activities/index.html.erb
@@ -23,13 +23,12 @@
<span class="pagination">
<ul class="pages">
- <li class="previous">
+ <li class="previous page">
<%= link_to_content_update("\xc2\xab " + l(:label_previous),
params.merge(:from => @date_to - @days - 1),
:title => l(:label_date_from_to, :start => format_date(@date_to - 2*@days), :end => format_date(@date_to - @days - 1)),
:accesskey => accesskey(:previous)) %>
- </li>
- <li class="next">
+ </li><li class="next page">
<%= link_to_content_update(l(:label_next) + " \xc2\xbb",
params.merge(:from => @date_to + @days - 1),
:title => l(:label_date_from_to, :start => format_date(@date_to), :end => format_date(@date_to + @days - 1)),