]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/rss10action.php
Reworked File->getUrl to throw exception
[quix0rs-gnu-social.git] / lib / rss10action.php
index 137015530b0af7b2b8457eea44e0913efb1ec8ba..6940ab4319590d34af19d63cea6edb7641e6b843 100644 (file)
@@ -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);