]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/conversationreplies.php
threadednoticelist takes a profile param
[quix0rs-gnu-social.git] / actions / conversationreplies.php
index 51bc97f1fceaafb6594b28ade68bed45ab93cdab..450a3d68282136b75fa8e8c574ac586fe150dd6d 100644 (file)
@@ -66,7 +66,7 @@ class ConversationRepliesAction extends ConversationAction
      */
     function showContent()
     {
-        $ct = new FullThreadedNoticeList($this->notices, $this);
+        $ct = new FullThreadedNoticeList($this->notices, $this, $this->userProfile);
 
         $cnt = $ct->show();
     }
@@ -91,7 +91,7 @@ class FullThreadedNoticeList extends ThreadedNoticeList
 {
     function newListItem($notice)
     {
-        return new FullThreadedNoticeListItem($notice, $this->out);
+        return new FullThreadedNoticeListItem($notice, $this->out, $this->userProfile);
     }
 }