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

Merge pull request #4110 from frederic34/patch-5

Update list.php
parents bbece06b 6d7e3604
No related branches found
No related tags found
No related merge requests found
......@@ -177,6 +177,12 @@ if (empty($user->rights->expensereport->readall) && empty($user->rights->expense
}
$sql.= $db->order($sortfield,$sortorder);
$nbtotalofrecords = 0;
if (empty($conf->global->MAIN_DISABLE_FULL_SCANLIST))
{
$result = $db->query($sql);
$nbtotalofrecords = $db->num_rows($result);
}
$sql.= $db->plimit($limit+1, $offset);
//print $sql;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment