From fc01923abb6c3fc3b5eeab3efe5bfd02878a31a1 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 13 Feb 2006 13:36:38 +0000 Subject: [PATCH] bugfix --- htdocs/compta/facture.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/compta/facture.php b/htdocs/compta/facture.php index f3c42714813..002254fae0e 100644 --- a/htdocs/compta/facture.php +++ b/htdocs/compta/facture.php @@ -190,6 +190,7 @@ if ($_POST['action'] == 'add') $result = $facture->addline($facid, addslashes($liblignefac), + $prop->lignes[$i]->desc, $prop->lignes[$i]->subprice, $prop->lignes[$i]->qty, $prop->lignes[$i]->tva_tx, @@ -221,6 +222,7 @@ if ($_POST['action'] == 'add') { $result = $facture->addline($facid, addslashes($lines[$i]->description), + $lines[$i]->desc, $lines[$i]->subprice, $lines[$i]->qty, $lines[$i]->tva_tx,