From 4ba24ed8d7bd8bf855a2bc783b31116b1182b7be Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Tue, 11 Jun 2013 12:58:52 +0200 Subject: [PATCH] Fix: Missing empty value --- htdocs/product/fiche.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/product/fiche.php b/htdocs/product/fiche.php index fa1f0fa5621..8971b93a3df 100644 --- a/htdocs/product/fiche.php +++ b/htdocs/product/fiche.php @@ -732,7 +732,7 @@ else { print ''.$langs->trans("Nature").''; $statutarray=array('1' => $langs->trans("Finished"), '0' => $langs->trans("RowMaterial")); - print $form->selectarray('finished',$statutarray,GETPOST('finished')); + print $form->selectarray('finished',$statutarray,GETPOST('finished'),1); print ''; }