4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 13:16:37 +00:00

#3592 -- Fix subsequent pages of ArrayCollection paginated rows.

This commit is contained in:
Buster "Silver Eagle" Neece 2020-12-22 23:59:32 -06:00
parent e4c887fd3a
commit b970690398
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E

View File

@ -134,7 +134,7 @@ class Paginator
$results[] = $postprocessor($result);
}
} else {
$results = iterator_to_array($iterator);
$results = iterator_to_array($iterator, false);
}
if ($this->isDisabled) {