diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-07-02 15:09:48 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-07-02 15:09:48 -0700 |
commit | bca3b3d36fb19c8583435febd2843a386a1469e6 (patch) | |
tree | 97930bcec89976300a59a1a4fa02df78b5a97930 | |
parent | a9c83b064f38a2a1c431710c20eef611057711e8 (diff) |
Send null as 2nd arg, not 3rd.
-rw-r--r-- | actions/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/conversation.php b/actions/conversation.php index cd6f26329..468409189 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); |