1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-03-26 10:41:09 +00:00

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
This commit is contained in:
Jean-Philippe Lang 2016-06-29 15:45:10 +00:00
parent 06818eb3b5
commit 4bf74a536f

View File

@ -23,13 +23,12 @@
<span class="pagination"> <span class="pagination">
<ul class="pages"> <ul class="pages">
<li class="previous"> <li class="previous page">
<%= link_to_content_update("\xc2\xab " + l(:label_previous), <%= link_to_content_update("\xc2\xab " + l(:label_previous),
params.merge(:from => @date_to - @days - 1), 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)), :title => l(:label_date_from_to, :start => format_date(@date_to - 2*@days), :end => format_date(@date_to - @days - 1)),
:accesskey => accesskey(:previous)) %> :accesskey => accesskey(:previous)) %>
</li> </li><li class="next page">
<li class="next">
<%= link_to_content_update(l(:label_next) + " \xc2\xbb", <%= link_to_content_update(l(:label_next) + " \xc2\xbb",
params.merge(:from => @date_to + @days - 1), 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)), :title => l(:label_date_from_to, :start => format_date(@date_to), :end => format_date(@date_to + @days - 1)),