]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
don't render content in RSS feeds
authorEvan Prodromou <evan@prodromou.name>
Thu, 29 May 2008 19:25:10 +0000 (15:25 -0400)
committerEvan Prodromou <evan@prodromou.name>
Thu, 29 May 2008 19:25:10 +0000 (15:25 -0400)
darcs-hash:20080529192510-84dde-eedf578cb3cb06dd019b8a613192adb467cfab4a.gz

lib/rssaction.php

index b52de42b2347465e71b64f2db6f135ccf0eb094a..54259f4af588cb2f575464e1e933f8e8007ec9c1 100644 (file)
@@ -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');
        }