Fix: Missing empty value

This commit is contained in:
Laurent Destailleur 2013-06-11 12:58:52 +02:00
parent 897d1251c8
commit 4ba24ed8d7

View File

@ -732,7 +732,7 @@ else
{
print '<tr><td>'.$langs->trans("Nature").'</td><td>';
$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 '</td></tr>';
}