summaryrefslogtreecommitdiff
path: root/app/views/rss
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-10-31 20:51:28 +0100
committerhukl <contact@smyck.org>2009-10-31 20:51:28 +0100
commit1d38a9282fd541fa6c8c2983e11b5655cab3e788 (patch)
tree5c8508baecadf1bdff8200657f60b67172563742 /app/views/rss
parent8dea44f5719961b7bd24f4b1373f48c5006e695f (diff)
fixed problem for failing rss feed
Diffstat (limited to 'app/views/rss')
-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 f9b5ef8..3cca944 100644
--- a/app/views/rss/updates.xml.builder
+++ b/app/views/rss/updates.xml.builder
@@ -4,7 +4,7 @@ xml.feed(:xmlns => "http://www.w3.org/2005/Atom", "xml:base" => @host) do
4 xml.title("Chaos Computer Club Updates") 4 xml.title("Chaos Computer Club Updates")
5 xml.link(:href => "http://www.ccc.de/") 5 xml.link(:href => "http://www.ccc.de/")
6 xml.link(:rel => "self", :href => "/rss/updates.xml") 6 xml.link(:rel => "self", :href => "/rss/updates.xml")
7 xml.updated((@items.first.published_at || @items.first.updated_at).xmlschema) 7 xml.updated(@items.first.published_at.xmlschema)
8 xml.author do 8 xml.author do
9 xml.name("Chaos Computer Club e.V.") 9 xml.name("Chaos Computer Club e.V.")
10 end 10 end