From: Zach Copley Date: Thu, 2 Jul 2009 22:09:48 +0000 (-0700) Subject: Send null as 2nd arg, not 3rd. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bca3b3d36fb19c8583435febd2843a386a1469e6;p=quix0rs-gnu-social.git Send null as 2nd arg, not 3rd. --- diff --git a/actions/conversation.php b/actions/conversation.php index cd6f263294..468409189b 100644 --- a/actions/conversation.php +++ b/actions/conversation.php @@ -107,7 +107,7 @@ class ConversationAction extends Action function showContent() { - $notices = Notice::conversationStream($this->id, 0, null); + $notices = Notice::conversationStream($this->id, null); $ct = new ConversationTree($notices, $this);