diff --git a/app/views/wiki/atom.rxml b/app/views/wiki/atom.rxml index de351b98..6ed14a2e 100644 --- a/app/views/wiki/atom.rxml +++ b/app/views/wiki/atom.rxml @@ -2,7 +2,7 @@ xml.feed('xmlns' => "http://www.w3.org/2005/Atom", "xml:lang" => 'en') do xml.title(@web.name) xml.link( 'rel' => 'alternate', 'type' => "application/xhtml+xml", 'href' => url_for(:only_path => false, :web => @web_name, :action => @link_action, :id => 'HomePage') ) xml.link( 'rel' => 'self', 'href' => url_for(:only_path => false, :web => @web_name, :action => @hide_description? :atom_with_headlines : :atom_with_content ) ) - xml.updated(@pages_by_revision.map { |p| p.revised_at }.max.getgm.strftime("%Y-%m-%dT%H:%M:%SZ") ) + xml.updated(@web.revised_at.getgm.strftime("%Y-%m-%dT%H:%M:%SZ") ) xml.id('tag:' + url_for(:only_path => false, :web => @web_name).split('/')[2].split(':')[0] + ',' + @web.created_at.getgm.strftime("%Y-%m-%d") + ':' + CGI.escape(@web.name) ) xml.subtitle('An Instiki Wiki') xml.generator('Instiki', 'uri' => "http://golem.ph.utexas.edu/instiki/show/HomePage", 'version' => Instiki::VERSION::STRING)