diff options
author | Evan Prodromou <evan@status.net> | 2009-12-10 14:36:14 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-12-10 14:36:14 -0500 |
commit | 79443d1ee2a50234e79c89f2bc41bb49935c66ca (patch) | |
tree | b87f6f978c580d4e5a58d42b75d7066f617cd7c3 | |
parent | dd098fee776fbb794080b8f95beab16b2f31556b (diff) |
had wrong number of arguments to NoticeList in notice inbox
-rw-r--r-- | actions/all.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/all.php b/actions/all.php index 08fbacaef..452803d8a 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(); |