From: Sarven Capadisli Date: Fri, 12 Jun 2009 16:13:45 +0000 (+0000) Subject: http://laconi.ca/trac/ticket/863 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=392c8d4a967f01533fd7458298e79c82486dc914;p=quix0rs-gnu-social.git http://laconi.ca/trac/ticket/863 Thanks to Toby Inkster for the patch. --- diff --git a/lib/rssaction.php b/lib/rssaction.php index cfb5ca44a6..6f30a02f21 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));