diff --git a/htdocs/expensereport/list.php b/htdocs/expensereport/list.php index c37d0d81dad..10b19d66da3 100644 --- a/htdocs/expensereport/list.php +++ b/htdocs/expensereport/list.php @@ -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;