Do not fail over missing user, when building rss feed.

This commit is contained in:
Benjamin Meichsner 2014-09-22 11:02:45 +02:00
parent 71324ce5db
commit 9b03ac9a7c
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
xml.instruct! :xml, :version => "1.0"
xml.instruct! :xml, :version => "1.0"
xml.rss :version => "2.0" do
xml.channel do
xml.title FoodsoftConfig[:name] + " Wiki"
@ -9,11 +9,11 @@ xml.rss :version => "2.0" do
xml.item do
xml.title page.title
xml.description page.diff, :type => "html"
xml.author User.find(page.updated_by).display
xml.author User.find_by_id(page.updated_by).try(:display)
xml.pubDate page.updated_at.to_s(:rfc822)
xml.link wiki_page_path(page.permalink)
xml.guid page.updated_at.to_i
end
end
end
end
end