From: Evan Prodromou Date: Thu, 10 Dec 2009 19:36:14 +0000 (-0500) Subject: had wrong number of arguments to NoticeList in notice inbox X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=79443d1ee2a50234e79c89f2bc41bb49935c66ca;p=quix0rs-gnu-social.git had wrong number of arguments to NoticeList in notice inbox --- diff --git a/actions/all.php b/actions/all.php index 08fbacaef1..452803d8ae 100644 --- a/actions/all.php +++ b/actions/all.php @@ -144,7 +144,7 @@ class AllAction extends ProfileAction function showContent() { - $nl = new NoticeList($this->notice, $this->user, $this); + $nl = new NoticeList($this->notice, $this); $cnt = $nl->show();