mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-20 15:31:12 +00:00
Don't generate pagination links with params.
git-svn-id: http://svn.redmine.org/redmine/trunk@15627 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
21c4665e2a
commit
5d31eb2495
@ -145,7 +145,7 @@ module Redmine
|
|||||||
if block_given?
|
if block_given?
|
||||||
yield text, parameters, options
|
yield text, parameters, options
|
||||||
else
|
else
|
||||||
link_to text, params.merge(parameters), options
|
link_to text, {:params => request.query_parameters.merge(parameters)}, options
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@ -135,11 +135,11 @@ class IssuesTest < Redmine::IntegrationTest
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_pagination_links_on_index_without_project_id_in_url
|
def test_pagination_links_should_preserve_query_parameters
|
||||||
with_settings :per_page_options => '2' do
|
with_settings :per_page_options => '2' do
|
||||||
get '/issues', :project_id => 'ecookbook'
|
get '/projects/ecookbook/issues?foo=bar'
|
||||||
|
|
||||||
assert_select 'a[href=?]', '/projects/ecookbook/issues?page=2', :text => '2'
|
assert_select 'a[href=?]', '/projects/ecookbook/issues?foo=bar&page=2', :text => '2'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user