Fix selezione totale datatables

This commit is contained in:
Thomas Zilio 2019-03-04 18:37:10 +01:00
parent 3e27ab4825
commit daffd7b86d
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class Query
}
// Paginazione
if (!empty($limit)) {
if (!empty($limit) && intval($limit['length']) > 0) {
$query .= ' LIMIT '.$limit['start'].', '.$limit['length'];
}