From e24b875022e42b26892b8920f189b5613997faf9 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Sun, 19 Feb 2006 13:31:12 +0000 Subject: [PATCH] bugfix --- htdocs/product/fiche.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/product/fiche.php b/htdocs/product/fiche.php index ab072a6761a..5c1bb085d04 100644 --- a/htdocs/product/fiche.php +++ b/htdocs/product/fiche.php @@ -227,7 +227,7 @@ if ($_POST["action"] == 'addincommande') $commande->fetch($_POST["commandid"]); $result = $commande->addline(addslashes($product->libelle), - addslashes($product->product_desc), + addslashes($product->description), $product->price, $_POST["qty"], $product->tva_tx, @@ -256,7 +256,7 @@ if ($_POST["action"] == 'addinfacture' && $user->rights->facture->creer) $facture->addline($_POST["factureid"], addslashes($product->libelle), - addslashes($product->product_desc), + addslashes($product->description), $product->price, $_POST["qty"], $product->tva_tx,