From 3ba4258f9e13d6ba84dd21197782303ac26b28fd Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 15 Apr 2011 18:56:24 -0400 Subject: [PATCH] use notice list instead of threaded for list view --- actions/showprofiletag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();