summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2010-01-31 20:07:36 +0100
committerhukl <contact@smyck.org>2010-01-31 20:07:36 +0100
commit68d77e6afef4cbadb798229ecbb7e7392dcf44e4 (patch)
treec9f0ec0bfba5f88d45b367dd84f8f7b82f784991 /app
parent08055df19ae6dcf6a1feccd7097af61a81500f3b (diff)
hmm this should've been there all along.
Diffstat (limited to 'app')
-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