From 904fac1d33b0228b3f890a600d1f5a87aeb290c6 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 27 Feb 2006 19:34:01 +0000 Subject: [PATCH] Fix: Corrige pb sur param non chaine --- htdocs/product/stock/fiche.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/product/stock/fiche.php b/htdocs/product/stock/fiche.php index 483a972cb63..1a7ac413f47 100644 --- a/htdocs/product/stock/fiche.php +++ b/htdocs/product/stock/fiche.php @@ -149,7 +149,7 @@ if ($_GET["action"] == 'create') print ''.$langs->trans('Town').''; print ''.$langs->trans('Country').''; - $form->select_pays($entrepot->pays_id, pays_id); + $form->select_pays($entrepot->pays_id, 'pays_id'); print ''; print ''.$langs->trans("Status").''; @@ -357,7 +357,7 @@ else print ''.$langs->trans('Town').''; print ''.$langs->trans('Country').''; - $form->select_pays($entrepot->pays_id, pays_id); + $form->select_pays($entrepot->pays_id, 'pays_id'); print ''; print ''.$langs->trans("Status").'';