From 4787fc5f39eb6807363bd099584240f108f2c851 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 29 Sep 2005 20:19:04 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20bug=20#14669=20overview:=20modif=20artic?= =?UTF-8?q?le=20ne=20prend=20pas=20en=20compte=20modif=20libell=E9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/product/fiche.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/product/fiche.php b/htdocs/product/fiche.php index 0689e58e188..a560902364d 100644 --- a/htdocs/product/fiche.php +++ b/htdocs/product/fiche.php @@ -101,6 +101,7 @@ if ($_POST["action"] == 'update' && if ($product->fetch($_POST["id"])) { $product->ref = $_POST["ref"]; + $product->libelle = $_POST["libelle"]; $product->price = $_POST["price"]; $product->tva_tx = $_POST["tva_tx"]; $product->description = $_POST["desc"];