From 129d505d9117ad05abe6bbc4d1936fd9b6f7bc2a Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 20 Nov 2012 21:01:59 +0000 Subject: [PATCH] Fix formatting of comments in the notes RSS feed --- app/views/notes/feed.rss.builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/notes/feed.rss.builder b/app/views/notes/feed.rss.builder index d22d67311..dd7d32c5f 100644 --- a/app/views/notes/feed.rss.builder +++ b/app/views/notes/feed.rss.builder @@ -27,7 +27,7 @@ xml.rss("version" => "2.0", if comment.event == "commented" and not comment.nil? description_text += "Comment:
" - description_text += htmlize(comment.body) + description_text += comment.body.to_html description_text += "
" end -- 2.43.2