X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Finboxnoticestream.php;h=b5a8877d99d426a9a425c4952ea6ef1d9d3a0c61;hb=e8d1bb25469fe1ef0cbcb32c3022010997aca4b0;hp=0d8733e079cc31989dd0e6ecc009a035154c607f;hpb=996345088e8d57cf39fa38129ab50ff02918a275;p=quix0rs-gnu-social.git diff --git a/lib/inboxnoticestream.php b/lib/inboxnoticestream.php index 0d8733e079..b5a8877d99 100644 --- a/lib/inboxnoticestream.php +++ b/lib/inboxnoticestream.php @@ -136,34 +136,4 @@ class RawInboxNoticeStream extends NoticeStream return $ids; } - - function getNotices($offset, $limit, $sinceId, $maxId) - { - //common_debug('offset=' . $offset . ',limit=' . $limit . ',sinceId=' . $sinceId . ',maxId=' . $maxId . ' - CALLED!'); - $all = array(); - - do { - - $ids = $this->getNoticeIds($offset, $limit, $sinceId, $maxId); - //common_debug('ids()=' . count($ids)); - - $notices = Notice::pivotGet('id', $ids); - - // By default, takes out false values - - $notices = array_filter($notices); - - $all = array_merge($all, $notices); - - if (count($notices < count($ids))) { - $offset += $limit; - $limit -= count($notices); - } - - //common_debug('all()=' . count($all)); - } while (count($notices) < count($ids) && count($ids) > 0); - - //common_debug('all()=' . count($all) . ' - EXIT!'); - return new ArrayWrapper($all); - } }