We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e8a20e commit a394ae1Copy full SHA for a394ae1
app/code/Magento/CatalogImportExport/Model/Import/Product.php
@@ -2894,6 +2894,14 @@ private function parseAttributesWithoutWrappedValues($attributesData)
2894
if (!$code) {
2895
continue;
2896
}
2897
+ //concatenate attribute values with last used separator in case of array
2898
+ if (is_array($preparedAttributes[$code])
2899
+ && str_contains($attributesData, self::PSEUDO_MULTI_LINE_SEPARATOR)) {
2900
+ $preparedAttributes[$code] = implode(
2901
+ self::PSEUDO_MULTI_LINE_SEPARATOR,
2902
+ $preparedAttributes[$code]
2903
+ );
2904
+ }
2905
$preparedAttributes[$code] .= $this->getMultipleValueSeparator() . $attributeData;
2906
2907
0 commit comments