]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/activityhandlerplugin.php
PollListItem freed from noticeListItemAdapter clutches
[quix0rs-gnu-social.git] / lib / activityhandlerplugin.php
index b105bf21f23493c7111815de35207072efb93f4a..68907af0fb4970e77206bcc99c6c0bd4f7e501ad 100644 (file)
@@ -606,7 +606,12 @@ abstract class ActivityHandlerPlugin extends Plugin
             return true;
         }
 
-        $out->text($stored->getContent());
+        $this->showNoticeContent($stored, $out, $scoped);
         return false;
     }
+
+    protected function showNoticeContent(Notice $stored, HTMLOutputter $out, Profile $scoped=null)
+    {
+        $out->text($stored->getContent());
+    }
 }