From: Evan Prodromou <evan@status.net>
Date: Fri, 15 Apr 2011 22:56:24 +0000 (-0400)
Subject: use notice list instead of threaded for list view
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3ba4258f9e13d6ba84dd21197782303ac26b28fd;p=quix0rs-gnu-social.git

use notice list instead of threaded for list view
---

diff --git a/actions/showprofiletag.php b/actions/showprofiletag.php
index f33021bf62..244e0e75d1 100644
--- a/actions/showprofiletag.php
+++ b/actions/showprofiletag.php
@@ -244,7 +244,7 @@ class ShowprofiletagAction extends Action
     function showNotices()
     {
         if (Event::handle('StartShowProfileTagContent', array($this))) {
-            $nl = new ThreadedNoticeList($this->notice, $this, $this->userProfile);
+            $nl = new NoticeList($this->notice, $this);
 
             $cnt = $nl->show();