From 630302ba2b9625680968703d6e02067801585e2c Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Wed, 29 Mar 2006 08:36:06 +0000 Subject: [PATCH] Suppress all output --- htdocs/telephonie/script/facturation-analyse.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/telephonie/script/facturation-analyse.php b/htdocs/telephonie/script/facturation-analyse.php index ec90aa790a0..237f88ea1c4 100644 --- a/htdocs/telephonie/script/facturation-analyse.php +++ b/htdocs/telephonie/script/facturation-analyse.php @@ -97,7 +97,8 @@ else $month = substr("00".$month, -2) ; -print "Analyse $month/$year\n"; +if ($verbose > 0) + print "Analyse $month/$year\n"; $sql = "SELECT cd.fk_fournisseur, sum(cd.fourn_montant), sum(cd.cout_vente)"; $sql .= " FROM ".MAIN_DB_PREFIX."telephonie_facture as tf";