summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-07-02 15:09:48 -0700
committerZach Copley <zach@controlyourself.ca>2009-07-02 15:09:48 -0700
commitbca3b3d36fb19c8583435febd2843a386a1469e6 (patch)
tree97930bcec89976300a59a1a4fa02df78b5a97930 /actions
parenta9c83b064f38a2a1c431710c20eef611057711e8 (diff)
Send null as 2nd arg, not 3rd.
Diffstat (limited to 'actions')
-rw-r--r--actions/conversation.php2
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);