]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Send null as 2nd arg, not 3rd.
authorZach Copley <zach@controlyourself.ca>
Thu, 2 Jul 2009 22:09:48 +0000 (15:09 -0700)
committerZach Copley <zach@controlyourself.ca>
Thu, 2 Jul 2009 22:09:48 +0000 (15:09 -0700)
actions/conversation.php

index cd6f263294270466328f28f283675f38c2432016..468409189bdd09f2f210ae764140b563ed615cb6 100644 (file)
@@ -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);