Fix regression

This commit is contained in:
Laurent Destailleur 2017-09-04 10:17:51 +02:00
parent 2c3a696b78
commit 61ee071f43

View File

@ -4261,13 +4261,6 @@ abstract class CommonObject
foreach($new_array_options as $key => $value)
{
$attributeKey = substr($key,8); // Remove 'options_' prefix
// array_option may contain extrafields from an origin object that doesn't exist in current object, we should not try to insert them
if(empty($extrafields->attribute_type[$attributeKey])) {
unset($this->array_options[$key]);
continue;
}
$attributeType = $extrafields->attribute_type[$attributeKey];
$attributeLabel = $extrafields->attribute_label[$attributeKey];
$attributeParam = $extrafields->attribute_param[$attributeKey];