summaryrefslogtreecommitdiff
path: root/actions/conversation.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-07-03 10:40:23 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-07-03 10:40:23 -0400
commite2f8b8d65d3018ba8bee9e6be51f5ce445d433ef (patch)
tree11297b8a7976ed91ae21e90585f4e51b996421da /actions/conversation.php
parent04c713e671663a64b573a28912dd06cf0de3cb58 (diff)
no limit on conversation stream
Diffstat (limited to 'actions/conversation.php')
-rw-r--r--actions/conversation.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/actions/conversation.php b/actions/conversation.php
index 5049a2232..4c4471f83 100644
--- a/actions/conversation.php
+++ b/actions/conversation.php
@@ -34,8 +34,6 @@ if (!defined('LACONICA')) {
// XXX: not sure how to do paging yet,
// so set a 60-notice limit
-define('CONVERSATION_LIMIT', 60);
-
require_once INSTALLDIR.'/lib/noticelist.php';
/**
@@ -112,7 +110,7 @@ class ConversationAction extends Action
function showContent()
{
- $notices = Notice::conversationStream($this->id, null, CONVERSATION_LIMIT);
+ $notices = Notice::conversationStream($this->id, 0, null);
$ct = new ConversationTree($notices, $this);