]> source.dussan.org Git - redmine.git/commitdiff
Fixes self and alternate atom links (#3161).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 26 Apr 2009 20:12:58 +0000 (20:12 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 26 Apr 2009 20:12:58 +0000 (20:12 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2697 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/common/feed.atom.rxml

index 811140152d6c9e29607fd8f97bd1c490454e404a..d5fec75d27133f291a46b8ea77d6c1aae3e7ba22 100644 (file)
@@ -1,8 +1,8 @@
 xml.instruct!
 xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
   xml.title   truncate_single_line(@title, :length => 100)
-  xml.link    "rel" => "self", "href" => url_for(params.merge({:format => nil, :only_path => false}))
-  xml.link    "rel" => "alternate", "href" => url_for(:controller => 'welcome', :only_path => false)
+  xml.link    "rel" => "self", "href" => url_for(params.merge(:only_path => false))
+  xml.link    "rel" => "alternate", "href" => url_for(params.merge(:only_path => false, :format => nil, :key => nil))
   xml.id      url_for(:controller => 'welcome', :only_path => false)
   xml.updated((@items.first ? @items.first.event_datetime : Time.now).xmlschema)
   xml.author  { xml.name "#{Setting.app_title}" }