From 6f92468795d64545c93c21aa13cd352e655b2612 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Tue, 9 Mar 2004 14:28:20 +0000 Subject: [PATCH] =?UTF-8?q?Mise=20=E0=20jour=20des=20classes=20de=20graph?= =?UTF-8?q?=20utilis=E9es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/product/stats/fiche.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htdocs/product/stats/fiche.php b/htdocs/product/stats/fiche.php index d66f1582a92..a1fc71f39ea 100644 --- a/htdocs/product/stats/fiche.php +++ b/htdocs/product/stats/fiche.php @@ -21,7 +21,7 @@ */ require("./pre.inc.php"); require("../../propal.class.php"); -require("../../graph.class.php"); +//require("../../graph.class.php"); llxHeader(); @@ -54,10 +54,10 @@ if ($id) if (! file_exists($filev) or $action == 'recalcul') { - $px = new Graph(); + $px = new BarGraph(); $graph_data = $product->get_num_vente(); $px->draw($filev, $graph_data); - $px = new Graph(); + $px = new BarGraph(); $graph_data = $product->get_nb_vente(); $px->draw($filenv, $graph_data); $mesg = "Graphiques générés";