From a6e4ba70012be5641d73bc532ba75ccd21abbf07 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 1 Dec 2013 18:53:16 +0100 Subject: [PATCH] Fix: No limits for drafts lists --- htdocs/compta/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/compta/index.php b/htdocs/compta/index.php index 98e8a148897..bccf0128b42 100644 --- a/htdocs/compta/index.php +++ b/htdocs/compta/index.php @@ -1,6 +1,6 @@ - * Copyright (C) 2004-2011 Laurent Destailleur + * Copyright (C) 2004-2013 Laurent Destailleur * Copyright (C) 2005-2012 Regis Houssin * * This program is free software; you can redistribute it and/or modify @@ -216,7 +216,7 @@ if (! empty($conf->facture->enabled) && $user->rights->facture->lire) $i = 0; $tot_ttc = 0; - while ($i < $num && $i < 20) + while ($i < $num) { $obj = $db->fetch_object($resql); print ''; @@ -285,7 +285,7 @@ if (! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->facture- $i = 0; $tot_ttc = 0; - while ($i < $num && $i < 20) + while ($i < $num) { $obj = $db->fetch_object($resql); print '';