diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-10 19:18:12 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-07-10 19:18:12 +0000 |
commit | b2044e6dfc261656ee477fa0287c98bda3fa183d (patch) | |
tree | b9d50e229eb6d18ad97a05333c3c37c7ded692bd /app/views/issues | |
parent | 731eadc4502f7fccc85dcc2ab4c29a9da4f5a415 (diff) | |
download | redmine-b2044e6dfc261656ee477fa0287c98bda3fa183d.tar.gz redmine-b2044e6dfc261656ee477fa0287c98bda3fa183d.zip |
Don't generate urls with params.
git-svn-id: http://svn.redmine.org/redmine/trunk@15631 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/index.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb index fd762023f..d120ce71e 100644 --- a/app/views/issues/index.html.erb +++ b/app/views/issues/index.html.erb @@ -76,9 +76,9 @@ <% end %> <% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => params.merge(:key => User.current.rss_key) %> - <%= f.link_to 'CSV', :url => params, :onclick => "showModal('csv-export-options', '350px'); return false;" %> - <%= f.link_to 'PDF', :url => params %> + <%= f.link_to_with_query_parameters 'Atom', :key => User.current.rss_key %> + <%= f.link_to_with_query_parameters 'CSV', {}, :onclick => "showModal('csv-export-options', '350px'); return false;" %> + <%= f.link_to_with_query_parameters 'PDF' %> <% end %> <div id="csv-export-options" style="display:none;"> |