summaryrefslogtreecommitdiffstats
path: root/app/views/timelog/index.html.erb
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2022-03-19 09:56:46 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2022-03-19 09:56:46 +0000
commitf286a6044be49b88b067f89072618aecc7164caa (patch)
tree6359dfe601c787be72932e98a862f5b99e98d11f /app/views/timelog/index.html.erb
parent65a91d13a0ef8a08f2cb118ea0bda716910db6a9 (diff)
downloadredmine-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/timelog/index.html.erb')
-rw-r--r--app/views/timelog/index.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/timelog/index.html.erb b/app/views/timelog/index.html.erb
index 7b9778d8e..f6751ebc8 100644
--- a/app/views/timelog/index.html.erb
+++ b/app/views/timelog/index.html.erb
@@ -28,7 +28,7 @@
<span class="pagination"><%= pagination_links_full @entry_pages, @entry_count %></span>
<% 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', '330px'); return false;" %>
<% end %>
@@ -67,5 +67,5 @@
<% html_title(@query.new_record? ? l(:label_spent_time) : @query.name, l(:label_details)) %>
<% content_for :header_tags do %>
- <%= auto_discovery_link_tag(:atom, {:issue_id => @issue, :format => 'atom', :key => User.current.rss_key}, :title => l(:label_spent_time)) %>
+ <%= auto_discovery_link_tag(:atom, {:issue_id => @issue, :format => 'atom', :key => User.current.atom_key}, :title => l(:label_spent_time)) %>
<% end %>