summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-11-08 19:02:21 +0100
committerhukl <contact@smyck.org>2009-11-08 19:02:21 +0100
commit6c2db7cc95abacb6a5a766521863f1b1f6b70440 (patch)
treec5e2791dc1dbdaf05d1116b67549fc56fd0e9791 /app
parentbc2908b802f911b44884f3de01369d298554cbb7 (diff)
id must be an url of course
Diffstat (limited to 'app')
-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 2461099..451e724 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 :type => "text/html" 19 :type => "text/html"
20 ) 20 )
21 xml.id(item.node.id) 21 xml.id("#{@host}/de/#{item.node.unique_name}")
22 xml.updated(item.published_at.xmlschema) 22 xml.updated(item.published_at.xmlschema)
23 xml.content(:type => "xhtml") do 23 xml.content(:type => "xhtml") do
24 xml.div(item.body, :xmlns => "http://www.w3.org/1999/xhtml") 24 xml.div(item.body, :xmlns => "http://www.w3.org/1999/xhtml")