From 1ef70b387d2682869732686c7bfa265611951666 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 17 Jul 2017 16:45:24 +0200 Subject: [PATCH] Fix bad limit --- htdocs/admin/websites.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/admin/websites.php b/htdocs/admin/websites.php index 66776220d32..61fa7bc17f3 100644 --- a/htdocs/admin/websites.php +++ b/htdocs/admin/websites.php @@ -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]);