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/boards | |
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/boards')
-rw-r--r-- | app/views/boards/index.html.erb | 4 | ||||
-rw-r--r-- | app/views/boards/show.html.erb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/views/boards/index.html.erb b/app/views/boards/index.html.erb index 7d0da1696..63daeb535 100644 --- a/app/views/boards/index.html.erb +++ b/app/views/boards/index.html.erb @@ -38,11 +38,11 @@ </table> <% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:controller => 'activities', :action => 'index', :id => @project, :show_messages => 1, :key => User.current.rss_key} %> + <%= f.link_to 'Atom', :url => {:controller => 'activities', :action => 'index', :id => @project, :show_messages => 1, :key => User.current.atom_key} %> <% end %> <% content_for :header_tags do %> - <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :show_messages => 1, :key => User.current.rss_key}) %> + <%= auto_discovery_link_tag(:atom, {:controller => 'activities', :action => 'index', :id => @project, :format => 'atom', :show_messages => 1, :key => User.current.atom_key}) %> <% end %> <% html_title l(:label_board_plural) %> diff --git a/app/views/boards/show.html.erb b/app/views/boards/show.html.erb index b80ff0383..bc8c24c3d 100644 --- a/app/views/boards/show.html.erb +++ b/app/views/boards/show.html.erb @@ -58,10 +58,10 @@ <% end %> <% other_formats_links do |f| %> - <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %> + <%= f.link_to 'Atom', :url => {:key => User.current.atom_key} %> <% end %> <% html_title @board.name %> <% content_for :header_tags do %> - <%= auto_discovery_link_tag(:atom, {:format => 'atom', :key => User.current.rss_key}, :title => "#{@project}: #{@board}") %> + <%= auto_discovery_link_tag(:atom, {:format => 'atom', :key => User.current.atom_key}, :title => "#{@project}: #{@board}") %> <% end %> |