From 36bd2468e0b7610210fde13911e133714dc8568a Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 24 Apr 2013 10:20:35 +0100 Subject: [PATCH] Fix exeption in GeoRSS formatting for notes --- app/views/notes/_note.rss.builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/notes/_note.rss.builder b/app/views/notes/_note.rss.builder index fbd217beb..a1ed7d378 100644 --- a/app/views/notes/_note.rss.builder +++ b/app/views/notes/_note.rss.builder @@ -14,7 +14,7 @@ xml.item do xml.description render(:partial => "description", :object => note, :formats => [ :html ]) if note.author - xml.author note.author_display_name + xml.author note.author.display_name end xml.pubDate note.updated_at.to_s(:rfc822) -- 2.43.2