]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
no limit on conversation stream
authorEvan Prodromou <evan@controlyourself.ca>
Fri, 3 Jul 2009 14:40:23 +0000 (10:40 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Fri, 3 Jul 2009 14:40:23 +0000 (10:40 -0400)
actions/conversation.php
classes/Notice.php

index 5049a2232591e9dc7cb72ee8b62478d8fa10e374..4c4471f8328128e861f546362464506cf6be351d 100644 (file)
@@ -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);
 
index 2ba2f31b1a62f47202f45caece88121b9f0a14e3..8a018068aee6289580217df68b627936985442ab 100644 (file)
@@ -1187,6 +1187,7 @@ class Notice extends Memcached_DataObject
 
         if (empty($cache) ||
             $since_id != 0 || $max_id != 0 || (!is_null($since) && $since > 0) ||
+            is_null($limit) ||
             ($offset + $limit) > NOTICE_CACHE_WINDOW) {
             return call_user_func_array($fn, array_merge($args, array($offset, $limit, $since_id,
                                                                       $max_id, $since)));