From 79443d1ee2a50234e79c89f2bc41bb49935c66ca Mon Sep 17 00:00:00 2001
From: Evan Prodromou <evan@status.net>
Date: Thu, 10 Dec 2009 14:36:14 -0500
Subject: [PATCH] had wrong number of arguments to NoticeList in notice inbox

---
 actions/all.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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();
 
-- 
2.39.5