From e2f8b8d65d3018ba8bee9e6be51f5ce445d433ef Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 3 Jul 2009 10:40:23 -0400 Subject: no limit on conversation stream --- actions/conversation.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'actions') 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); -- cgit v1.2.3-54-g00ecf