Merge pull request #9994 from ptibogxiv/patch-91

Fix Invalid argument supplied for foreach()
This commit is contained in:
Laurent Destailleur 2018-11-11 17:30:06 +01:00 committed by GitHub
commit ca3510e889
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,9 +8,12 @@ if (empty($conf) || ! is_object($conf))
}
// Loop to complete $param for extrafields
if (! empty($search_array_options)) // $extrafieldsobject is the $object->table_element like 'societe', 'socpeople', ...
{
foreach ($search_array_options as $key => $val)
{
$crit=$val;
$tmpkey=preg_replace('/search_options_/','',$key);
if ($val != '') $param.='&search_options_'.$tmpkey.'='.urlencode($val);
}
}
}