#9999 changed limit length when value is -1
This commit is contained in:
parent
a1421b9138
commit
889cd81155
|
@ -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,
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue