diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-10 17:20:28 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-10 17:20:28 +0000 |
commit | 731eadc4502f7fccc85dcc2ab4c29a9da4f5a415 (patch) | |
tree | d3f30a05d64fc6bfcef6ad6c10b6f4f75e36232c /app/views/gantts/show.html.erb | |
parent | cf62de0ff65edc734219f90d0ec64b3a8019be89 (diff) | |
download | redmine-731eadc4502f7fccc85dcc2ab4c29a9da4f5a415.tar.gz redmine-731eadc4502f7fccc85dcc2ab4c29a9da4f5a415.zip |
Don't generate urls with params.
git-svn-id: http://svn.redmine.org/redmine/trunk@15630 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/gantts/show.html.erb')
-rw-r--r-- | app/views/gantts/show.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb index 1337fefe9..0f7092081 100644 --- a/app/views/gantts/show.html.erb +++ b/app/views/gantts/show.html.erb @@ -333,12 +333,12 @@ <tr> <td style="text-align:left;"> <%= link_to("\xc2\xab " + l(:label_previous), - params.merge(@gantt.params_previous), + {:params => request.query_parameters.merge(@gantt.params_previous)}, :accesskey => accesskey(:previous)) %> </td> <td style="text-align:right;"> <%= link_to(l(:label_next) + " \xc2\xbb", - params.merge(@gantt.params_next), + {:params => request.query_parameters.merge(@gantt.params_next)}, :accesskey => accesskey(:next)) %> </td> </tr> |