diff --git a/core/modules/field/src/Plugin/migrate/process/d6/FieldOptionTranslation.php b/core/modules/field/src/Plugin/migrate/process/d6/FieldOptionTranslation.php index 05bb2ad0d6..8432c2b262 100644 --- a/core/modules/field/src/Plugin/migrate/process/d6/FieldOptionTranslation.php +++ b/core/modules/field/src/Plugin/migrate/process/d6/FieldOptionTranslation.php @@ -40,7 +40,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable $i = 0; foreach ($list as $allowed_value) { // Get the key for this allowed value which may be a key|label pair - // or or just key. + // or just key. $value = explode("|", $allowed_value); if (isset($value[0]) && ($value[0] == $option)) { $allowed_values = ['label' => $row->getSourceProperty('translation')];