Merge pull request #4110 from frederic34/patch-5

Update list.php
This commit is contained in:
Laurent Destailleur 2015-11-29 02:01:20 +01:00
commit b2a2f5b449

View File

@ -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;