Merge branch 'ent-10044-bugs-vista-snmp-traps' into 'develop'

Ent 10044 bugs vista snmp traps

See merge request artica/pandorafms!5353
This commit is contained in:
Rafael Ameijeiras 2022-12-28 09:58:38 +00:00
commit b9d33a6315
1 changed files with 2 additions and 1 deletions

View File

@ -576,7 +576,8 @@ class SnmpConsole extends HTML
// Catch post parameters.
$start = get_parameter('start', 0);
$length = get_parameter('length', $config['block_size']);
// There is a limit of (2^32)^2 (18446744073709551615) rows in a MyISAM table, show for show all use max nrows.
$length = ($length != '-1') ? $length : '18446744073709551615';
$order = get_datatable_order(true);
$filters = get_parameter('filter', []);