mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
Fix tests
This commit is contained in:
parent
7fc34fdc39
commit
b8b6b98c3a
1 changed files with 2 additions and 2 deletions
|
@ -140,8 +140,8 @@ module Kaminari
|
||||||
prev_page = path_to_prev_page(scope, options)
|
prev_page = path_to_prev_page(scope, options)
|
||||||
|
|
||||||
output = String.new
|
output = String.new
|
||||||
output << "<link rel='next' href='#{next_page}'></link>" if next_page
|
output << %Q|<link rel="next" href="#{next_page}"></link>| if next_page
|
||||||
output << "<link rel='prev' href='#{prev_page}'></link>" if prev_page
|
output << %Q|<link rel="prev" href="#{prev_page}"></link>| if prev_page
|
||||||
output.html_safe
|
output.html_safe
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue