Use CDATA for note descriptions in the RSS feed

This commit is contained in:
Tom Hughes 2013-05-07 11:30:13 +01:00
parent 621cb8a1ef
commit 42b3f961a6

View file

@ -25,7 +25,9 @@ xml.rss("version" => "2.0",
xml.link url_for(:controller => "browse", :action => "note", :id => comment.note.id, :only_path => false)
xml.guid url_for(:controller => "browse", :action => "note", :id => comment.note.id, :only_path => false)
xml.description render(:partial => "entry", :object => comment, :formats => [ :html ])
xml.description do
xml.cdata! render(:partial => "entry", :object => comment, :formats => [ :html ])
end
if comment.author
xml.author comment.author.display_name