summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/views/rss/updates.xml.builder2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/rss/updates.xml.builder b/app/views/rss/updates.xml.builder
index 3cca944..6be49e9 100644
--- a/app/views/rss/updates.xml.builder
+++ b/app/views/rss/updates.xml.builder
@@ -18,7 +18,7 @@ xml.feed(:xmlns => "http://www.w3.org/2005/Atom", "xml:base" => @host) do
18 :rel => "alternate" 18 :rel => "alternate"
19 ) 19 )
20 xml.id(content_url_helper(item.node.unique_path)) 20 xml.id(content_url_helper(item.node.unique_path))
21 xml.updated(item.updated_at.xmlschema) 21 xml.updated(item.published_at.xmlschema)
22 xml.content(:type => "xhtml") do 22 xml.content(:type => "xhtml") do
23 xml.div(item.body, :xmlns => "http://www.w3.org/1999/xhtml") 23 xml.div(item.body, :xmlns => "http://www.w3.org/1999/xhtml")
24 end 24 end