summaryrefslogtreecommitdiff
path: root/app/views/rss
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/rss')
-rw-r--r--app/views/rss/updates.xml.builder3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/rss/updates.xml.builder b/app/views/rss/updates.xml.builder
index cc9c859..c09c9c9 100644
--- a/app/views/rss/updates.xml.builder
+++ b/app/views/rss/updates.xml.builder
@@ -19,7 +19,8 @@ xml.feed(:xmlns => "http://www.w3.org/2005/Atom", "xml:base" => @host) do
19 :type => "text/html" 19 :type => "text/html"
20 ) 20 )
21 xml.id(content_url(:page_path => item.node.feed_id)) 21 xml.id(content_url(:page_path => item.node.feed_id))
22 xml.updated(item.published_at.xmlschema) 22 xml.updated(item.updated_at.xmlschema)
23 xml.published(item.published_at.xmlschema)
23 xml.content(:type => "xhtml") do 24 xml.content(:type => "xhtml") do
24 xml.div(item.body, :xmlns => "http://www.w3.org/1999/xhtml") 25 xml.div(item.body, :xmlns => "http://www.w3.org/1999/xhtml")
25 end 26 end