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:
Jean-Philippe Lang
2016-07-10 16:47:49 +00:00
parent 21c4665e2a
commit 5d31eb2495
2 changed files with 5 additions and 5 deletions

View File

@@ -145,7 +145,7 @@ module Redmine
if block_given?
yield text, parameters, options
else
link_to text, params.merge(parameters), options
link_to text, {:params => request.query_parameters.merge(parameters)}, options
end
end
end