From 9266ed16c46a410dfa3d479e577fb4ee9ab49e2c Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Wed, 6 Dec 2006 13:51:02 +0000 Subject: [PATCH] Suppression de l'ecriture sur la sortie standard --- scripts/cron/stock-graph.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/cron/stock-graph.php b/scripts/cron/stock-graph.php index 36672ac0cdc..a5c665f5cb2 100644 --- a/scripts/cron/stock-graph.php +++ b/scripts/cron/stock-graph.php @@ -114,7 +114,8 @@ foreach ($entrepots as $key => $ent) $title = "Valorisation du stock (euros HT) sur l'année ".$year; graph_datas($file, $title, $values[$key], $legends); -print "$file\n"; + if ($verbose) + print "$file\n"; }