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

Merge pull request #4650 from GPCsolutions/3.8-4649

Fix #4649 Wrong parameters order
parents 18ab1ab6 dfe7c6f0
No related branches found
No related tags found
No related merge requests found
......@@ -1256,7 +1256,7 @@ if (! empty($conf->global->PRODUIT_CUSTOMER_PRICES))
// Count total nb of records
$nbtotalofrecords = 0;
if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST)) {
$nbtotalofrecords = $prodcustprice->fetch_all($sortfield, $sortorder, 0, 0, $filter);
$nbtotalofrecords = $prodcustprice->fetch_all($sortorder, $sortfield, 0, 0, $filter);
}
$result = $prodcustprice->fetch_all($sortorder, $sortfield, $conf->liste_limit, $offset, $filter);
......
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