diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2022-03-19 09:56:46 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2022-03-19 09:56:46 +0000 |
commit | f286a6044be49b88b067f89072618aecc7164caa (patch) | |
tree | 6359dfe601c787be72932e98a862f5b99e98d11f /app/views/issues/index.html.erb | |
parent | 65a91d13a0ef8a08f2cb118ea0bda716910db6a9 (diff) | |
download | redmine-f286a6044be49b88b067f89072618aecc7164caa.tar.gz redmine-f286a6044be49b88b067f89072618aecc7164caa.zip |
Deprecate and rename rss_* methods to atom_* methods (#15118).
Patch by Mischa The Evil and Marius BÄ‚LTEANU
git-svn-id: http://svn.redmine.org/redmine/trunk@21467 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/issues/index.html.erb')
-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 b05b6ccf2..5a4d6b2c4 100644 --- a/app/views/issues/index.html.erb +++ b/app/views/issues/index.html.erb @@ -34,7 +34,7 @@ <% end %> <% other_formats_links do |f| %> - <%= f.link_to_with_query_parameters 'Atom', :key => User.current.rss_key %> + <%= f.link_to_with_query_parameters 'Atom', :key => User.current.atom_key %> <%= f.link_to_with_query_parameters 'CSV', {}, :onclick => "showModal('csv-export-options', '350px'); return false;" %> <%= f.link_to_with_query_parameters 'PDF' %> <% end %> @@ -80,12 +80,12 @@ <% content_for :header_tags do %> <%= auto_discovery_link_tag(:atom, {:query_id => @query, :format => 'atom', - :page => nil, :key => User.current.rss_key}, + :page => nil, :key => User.current.atom_key}, :title => l(:label_issue_plural)) %> <%= auto_discovery_link_tag(:atom, {:controller => 'journals', :action => 'index', :query_id => @query, :format => 'atom', - :page => nil, :key => User.current.rss_key}, + :page => nil, :key => User.current.atom_key}, :title => l(:label_changes_details)) %> <% end %> |