diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-07-01 14:45:09 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-07-01 14:45:09 -0400 |
commit | 0057f3da81f074be30f7e005e5b79b58a7c3acc7 (patch) | |
tree | f73f3ee2bc0179e9902a8535eda41c42207cde83 /actions | |
parent | 3b6ff92495e7354361fbb7f93ccb83d96c9e4452 (diff) |
show all the notices, not just latest 20
Diffstat (limited to 'actions')
-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 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); |