#9999 changed limit length when value is -1

This commit is contained in:
Daniel Cebrian 2023-01-05 14:33:04 +01:00
parent a1421b9138
commit 889cd81155
1 changed files with 1 additions and 1 deletions

View File

@ -850,7 +850,7 @@ if ($get_agent_alerts_datatable === true) {
} else {
$options_simple = [
'order' => $order,
'limit' => ($length > 0) ? $length : 18446744073709551615,
'limit' => ($length > 0) ? $length : 1844674407370955161,
'offset' => $start,
];
}