summaryrefslogtreecommitdiff
path: root/actions/conversation.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-07-01 14:45:09 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-07-01 14:45:09 -0400
commit0057f3da81f074be30f7e005e5b79b58a7c3acc7 (patch)
treef73f3ee2bc0179e9902a8535eda41c42207cde83 /actions/conversation.php
parent3b6ff92495e7354361fbb7f93ccb83d96c9e4452 (diff)
show all the notices, not just latest 20
Diffstat (limited to 'actions/conversation.php')
-rw-r--r--actions/conversation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/conversation.php b/actions/conversation.php
index 79197da2d..e0fb08fa7 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);