Merge branch 'ent-13493-vista-de-inventario-error-500-al-mostrar-todos-los-agentes-en-el-paginado' into 'develop'

Ent 13493 Vista de Inventario - Error 500 al mostrar todos los agentes en el paginado

See merge request artica/pandorafms!7308
This commit is contained in:
Gorka Sanchez 2024-05-14 13:02:16 +00:00
commit 53eb244c84
1 changed files with 7 additions and 5 deletions

View File

@ -1148,11 +1148,13 @@ function get_inventory_basic_info_sql($params, $count=false)
}
if ($count !== true) {
$limit_condition = sprintf(
'LIMIT %d, %d',
$params['start'],
$params['length']
);
if ((int) $params['length'] > -1) {
$limit_condition = sprintf(
'LIMIT %d, %d',
$params['start'],
$params['length']
);
}
$order_condition = sprintf('ORDER BY %s', $params['order']);
} else {