]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
show all the notices, not just latest 20
authorEvan Prodromou <evan@controlyourself.ca>
Wed, 1 Jul 2009 18:45:09 +0000 (14:45 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Wed, 1 Jul 2009 18:45:09 +0000 (14:45 -0400)
actions/conversation.php

index 79197da2d0a8484c0dcffebba673bae4b9acd0d0..e0fb08fa764cd408d382b0e26465376841b63a54 100644 (file)
@@ -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);