diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-07-03 10:40:23 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-07-03 10:40:23 -0400 |
commit | e2f8b8d65d3018ba8bee9e6be51f5ce445d433ef (patch) | |
tree | 11297b8a7976ed91ae21e90585f4e51b996421da /classes | |
parent | 04c713e671663a64b573a28912dd06cf0de3cb58 (diff) |
no limit on conversation stream
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Notice.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 2ba2f31b1..8a018068a 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -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))); |