xml.rss('version' => '2.0') do xml.channel do xml.title(page_title) xml.link(@request.protocol + @request.host_with_port + url_for(:rss => nil)) xml.description(page_title) @posts.each { |p| xml.item do xml.title(p.title) xml.link(@request.protocol + @request.host_with_port + url_for(:controller => "posts", :action => "show", :id => p.id)) xml.description(niceify_html_for_rss(p.content)) xml.pubDate(p.updated_at) end } end end
xml.pubDate(p.updated_at)
this would be better:
xml.pubDate(CGI.rfc1123_date p.updated_at)
xml.pubDate(p.updated_at)
use
xml.pubDate(p.updated.at.rfc822)
You need to create an account or log in to post comments to this site.