Skip to content

Commit

Permalink
Fix bad limit
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jul 17, 2017
1 parent b075f7a commit 1ef70b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/admin/websites.php
Expand Up @@ -362,7 +362,7 @@
$sql.=" ORDER BY ";
}
$sql.=$tabsqlsort[$id];
$sql.=$db->plimit($listlimit+1,$offset);
$sql.=$db->plimit($limit+1, $offset);
//print $sql;

$fieldlist=explode(',',$tabfield[$id]);
Expand Down

0 comments on commit 1ef70b3

Please sign in to comment.