X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fconversationreplies.php;h=55c3efa9e0cb6eb63099b23885d608a816733531;hb=b9eee437dd6d1b6fe6bc3e04993f339a1397d671;hp=21780fdf1da4a16d9545ce6d9f9250564dc3e2e6;hpb=36b331d469b6dcd1101783f21265f7be624bc58f;p=quix0rs-gnu-social.git diff --git a/actions/conversationreplies.php b/actions/conversationreplies.php index 21780fdf1d..55c3efa9e0 100644 --- a/actions/conversationreplies.php +++ b/actions/conversationreplies.php @@ -66,9 +66,7 @@ class ConversationRepliesAction extends ConversationAction */ function showContent() { - $notices = Notice::conversationStream($this->id, null, null); - - $ct = new FullThreadedNoticeList($notices, $this); + $ct = new FullThreadedNoticeList($this->notices, $this, $this->userProfile); $cnt = $ct->show(); } @@ -88,19 +86,3 @@ class ConversationRepliesAction extends ConversationAction $this->elementEnd('html'); } } - -class FullThreadedNoticeList extends ThreadedNoticeList -{ - function newListItem($notice) - { - return new FullThreadedNoticeListItem($notice, $this->out); - } -} - -class FullThreadedNoticeListItem extends ThreadedNoticeListItem -{ - function initialItems() - { - return 1000; // @fixme - } -}