diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-16 11:01:00 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-08-16 11:01:00 +0000 |
commit | 1f991c6a792a76de50d6b373510544e6469751b3 (patch) | |
tree | 66ecca85311bffff7e00724ac0e996795438f60c /app/views/welcome | |
parent | 2f0edb0b61aa6f52d9bf1cb9b16e8561d132e46a (diff) | |
download | redmine-1f991c6a792a76de50d6b373510544e6469751b3.tar.gz redmine-1f991c6a792a76de50d6b373510544e6469751b3.zip |
Added feeds auto discovery links on projects/show (patch by Nicolas Chuche).
Also fixed 'issue changes details' feed title.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@647 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/welcome')
-rw-r--r-- | app/views/welcome/index.rhtml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/views/welcome/index.rhtml b/app/views/welcome/index.rhtml index 9c73ab863..b91efec28 100644 --- a/app/views/welcome/index.rhtml +++ b/app/views/welcome/index.rhtml @@ -23,5 +23,6 @@ </div> <% content_for :header_tags do %> -<%= auto_discovery_link_tag(:rss, {:controller => 'feeds' , :action => 'news' }) %> -<% end %>
\ No newline at end of file +<%= auto_discovery_link_tag(:rss, {:controller => 'feeds', :action => 'news', :key => @key}, {:title => l(:label_news_latest)}) %> +<%= auto_discovery_link_tag(:atom, {:controller => 'feeds', :action => 'news', :key => @key, :format => 'atom'}, {:title => l(:label_news_latest)}) %> +<% end %> |