From 392c8d4a967f01533fd7458298e79c82486dc914 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Fri, 12 Jun 2009 16:13:45 +0000 Subject: http://laconi.ca/trac/ticket/863 Thanks to Toby Inkster for the patch. --- lib/rssaction.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/rssaction.php b/lib/rssaction.php index cfb5ca44a..6f30a02f2 100644 --- a/lib/rssaction.php +++ b/lib/rssaction.php @@ -202,6 +202,9 @@ class Rss10Action extends Action $this->element('title', null, $title); $this->element('link', null, $nurl); $this->element('description', null, $profile->nickname."'s status on ".common_exact_date($notice->created)); + if ($notice->rendered) { + $this->element('content:encoded', null, common_xml_safe_str($notice->rendered)); + } $this->element('dc:date', null, common_date_w3dtf($notice->created)); $this->element('dc:creator', null, ($profile->fullname) ? $profile->fullname : $profile->nickname); $this->element('sioc:has_creator', array('rdf:resource' => $creator_uri)); -- cgit v1.2.3-54-g00ecf