diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-29 15:25:10 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-29 15:25:10 -0400 |
commit | 9210f956332d5fcd786dd3ec757e6fd789f9a1ad (patch) | |
tree | 28f5463ecc0fb5904d74d8041caba2d82f408bc0 /lib/rssaction.php | |
parent | 39f26275f588fa29096c3317be499cb749941575 (diff) |
don't render content in RSS feeds
darcs-hash:20080529192510-84dde-eedf578cb3cb06dd019b8a613192adb467cfab4a.gz
Diffstat (limited to 'lib/rssaction.php')
-rw-r--r-- | lib/rssaction.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rssaction.php b/lib/rssaction.php index b52de42b2..54259f4af 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'); } |