From 29d703eb16b05d67440a6ccab7ae058cae403016 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 11 Jun 2004 01:04:16 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20Le=20nombre=20total=20de=20page=20=E9tai?= =?UTF-8?q?t=20parfois=20faux?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/compta/bank/account.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/compta/bank/account.php b/htdocs/compta/bank/account.php index 7a9eb64cae2..89baf44e578 100644 --- a/htdocs/compta/bank/account.php +++ b/htdocs/compta/bank/account.php @@ -169,7 +169,8 @@ if ($account > 0) * */ $mesg=''; - $nbpage=round($total_lines/$viewline)+($total_lines % $viewline > 0?1:0); // Nombre de page total + + $nbpage=floor($total_lines/$viewline)+($total_lines % $viewline > 0?1:0); // Nombre de page total if ($limitsql > $viewline) { $mesg.=''.img_previous().'';