fixed limit for conversations

This commit is contained in:
Evan Prodromou 2009-07-03 10:37:39 -04:00
parent c04e3c7769
commit 04c713e671

View File

@ -31,6 +31,11 @@ if (!defined('LACONICA')) {
exit(1); 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'; require_once INSTALLDIR.'/lib/noticelist.php';
/** /**
@ -107,7 +112,7 @@ class ConversationAction extends Action
function showContent() function showContent()
{ {
$notices = Notice::conversationStream($this->id, null); $notices = Notice::conversationStream($this->id, null, CONVERSATION_LIMIT);
$ct = new ConversationTree($notices, $this); $ct = new ConversationTree($notices, $this);