diff --git a/core/modules/entity_reference/entity_reference.module b/core/modules/entity_reference/entity_reference.module index 484ca310f740..5608b6bdfbe1 100644 --- a/core/modules/entity_reference/entity_reference.module +++ b/core/modules/entity_reference/entity_reference.module @@ -107,7 +107,7 @@ function entity_reference_field_is_empty($item, $field) { */ function entity_reference_field_presave(EntityInterface $entity, $field, $instance, $langcode, &$items) { foreach ($items as $delta => $item) { - if (empty($item['target_id']) && !empty($item['entity']) &&$item['entity']->isNew()) { + if (empty($item['target_id']) && !empty($item['entity']) && $item['entity']->isNew()) { $item['entity']->save(); $items[$delta]['target_id'] = $item['entity']->id(); }