Skip to content
Snippets Groups Projects
Commit 1ef70b38 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix bad limit

parent b075f7a4
No related branches found
No related tags found
No related merge requests found
......@@ -362,7 +362,7 @@ if ($id)
$sql.=" ORDER BY ";
}
$sql.=$tabsqlsort[$id];
$sql.=$db->plimit($listlimit+1,$offset);
$sql.=$db->plimit($limit+1, $offset);
//print $sql;
$fieldlist=explode(',',$tabfield[$id]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment