From: Evan Prodromou Date: Thu, 29 May 2008 19:25:10 +0000 (-0400) Subject: don't render content in RSS feeds X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9210f956332d5fcd786dd3ec757e6fd789f9a1ad;p=quix0rs-gnu-social.git don't render content in RSS feeds darcs-hash:20080529192510-84dde-eedf578cb3cb06dd019b8a613192adb467cfab4a.gz --- diff --git a/lib/rssaction.php b/lib/rssaction.php index b52de42b23..54259f4af5 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -111,7 +111,7 @@ class Rss10Action extends Action { common_element_start('item', array('rdf:about' => $notice->uri)); common_element('title', NULL, $notice->created); common_element('link', NULL, $nurl); - common_element('description', NULL, common_render_content($notice->content)); + common_element('description', NULL, $notice->content); common_element('dc:date', NULL, common_date_w3dtf($notice->created)); common_element_end('item'); }