Fix: [ bug #500 ] PHP Warning when creating dict line

This commit is contained in:
Regis Houssin 2012-08-18 09:57:42 +02:00
parent 058d0b1b08
commit eeb52eee0d

View File

@ -711,14 +711,14 @@ if ($id)
// Line to type new values
print "<tr ".$bc[$var].">";
$obj='';
$obj = (object) array();
// If data was already input, we define them in obj to populate input fields.
if (GETPOST('actionadd'))
{
foreach ($fieldlist as $key=>$val)
{
if (! empty($_POST[$val])) $obj->$val=$_POST[$val];
if (GETPOST($val))
$obj->$val=GETPOST($val);
}
}