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 abbfa03 commit cded4b1Copy full SHA for cded4b1
app/code/Magento/ConfigurableImportExport/Model/Import/Product/Type/Configurable.php
@@ -573,7 +573,7 @@ protected function _parseVariations($rowData)
573
574
$fieldAndValuePairs = [];
575
foreach ($fieldAndValuePairsText as $nameAndValue) {
576
- $nameAndValue = explode(ImportProduct::PAIR_NAME_VALUE_SEPARATOR, $nameAndValue);
+ $nameAndValue = explode(ImportProduct::PAIR_NAME_VALUE_SEPARATOR, $nameAndValue,2);
577
if (!empty($nameAndValue)) {
578
$value = isset($nameAndValue[1]) ? trim($nameAndValue[1]) : '';
579
// Ignoring field names' case.
0 commit comments