X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Frss10action.php;h=6940ab4319590d34af19d63cea6edb7641e6b843;hb=f02d32b718de732181d0f73beed2b7fdb77b1cbd;hp=137015530b0af7b2b8457eea44e0913efb1ec8ba;hpb=5a2d7601770a13f8cdb31285f271397ecf675be1;p=quix0rs-gnu-social.git diff --git a/lib/rss10action.php b/lib/rss10action.php index 137015530b..6940ab4319 100644 --- a/lib/rss10action.php +++ b/lib/rss10action.php @@ -209,8 +209,8 @@ class Rss10Action extends ManagedAction $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)); + if ($notice->getRendered()) { + $this->element('content:encoded', null, common_xml_safe_str($notice->getRendered())); } $this->element('dc:date', null, common_date_w3dtf($notice->created)); $this->element('dc:creator', null, ($profile->fullname) ? $profile->fullname : $profile->nickname);