mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 03:09:21 +02:00
Fixed records per page in export function.
Now the correct number of records will be returned when exporting data.
This commit is contained in:
parent
bd56ce2665
commit
407be65b69
@ -282,7 +282,7 @@ if ( !$content['error_occured'] )
|
||||
|
||||
// Increment Counter
|
||||
$counter++;
|
||||
} while ($counter < $content['ViewEntriesPerPage'] && ($ret = $stream->ReadNext($uID, $logArray)) == SUCCESS);
|
||||
} while ($counter < $content['CurrentViewEntriesPerPage'] && ($ret = $stream->ReadNext($uID, $logArray)) == SUCCESS);
|
||||
|
||||
if ( $content['read_direction'] == EnumReadDirection::Forward )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user