don't render content in RSS feeds

darcs-hash:20080529192510-84dde-eedf578cb3cb06dd019b8a613192adb467cfab4a.gz
This commit is contained in:
Evan Prodromou 2008-05-29 15:25:10 -04:00
parent 39f26275f5
commit 9210f95633
1 changed files with 1 additions and 1 deletions

View 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');
}