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:
commit
53eb244c84
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue