Fix events view coun with no pagination

This commit is contained in:
= 2022-11-07 15:59:56 +01:00
parent 4f99d94dc0
commit 58e5f7180d
1 changed files with 4 additions and 2 deletions

View File

@ -1848,11 +1848,13 @@ function events_get_all(
);
if (isset($limit, $offset) === true
&& $limit !== 0
&& (int) $limit !== 0
&& isset($filter['csv_all']) === false
) {
$count = count($data);
$end = ((int) $offset !== 0) ? ($offset + $limit) : $limit;
((int) $limit === -1)
? $end = count($data)
: $end = ((int) $offset !== 0) ? ($offset + $limit) : $limit;
$finally = array_slice($data, $offset, $end, true);
$return = [
'buffers' => $buffers,