From: Evan Prodromou Date: Fri, 3 Jul 2009 14:37:39 +0000 (-0400) Subject: fixed limit for conversations X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=04c713e671663a64b573a28912dd06cf0de3cb58;p=quix0rs-gnu-social.git fixed limit for conversations --- diff --git a/actions/conversation.php b/actions/conversation.php index 468409189b..5049a22325 100644 --- a/actions/conversation.php +++ b/actions/conversation.php @@ -31,6 +31,11 @@ if (!defined('LACONICA')) { exit(1); } +// XXX: not sure how to do paging yet, +// so set a 60-notice limit + +define('CONVERSATION_LIMIT', 60); + require_once INSTALLDIR.'/lib/noticelist.php'; /** @@ -107,7 +112,7 @@ class ConversationAction extends Action function showContent() { - $notices = Notice::conversationStream($this->id, null); + $notices = Notice::conversationStream($this->id, null, CONVERSATION_LIMIT); $ct = new ConversationTree($notices, $this);