From: Evan Prodromou Date: Wed, 1 Jul 2009 18:45:09 +0000 (-0400) Subject: show all the notices, not just latest 20 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=0057f3da81f074be30f7e005e5b79b58a7c3acc7;p=quix0rs-gnu-social.git show all the notices, not just latest 20 --- diff --git a/actions/conversation.php b/actions/conversation.php index 79197da2d0..e0fb08fa76 100644 --- a/actions/conversation.php +++ b/actions/conversation.php @@ -107,7 +107,7 @@ class ConversationAction extends Action function showContent() { - $notices = Notice::conversationStream($this->id); + $notices = Notice::conversationStream($this->id, 0, null); $ct = new ConversationTree($notices, $this);