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 7d47a61 commit 53fbce1Copy full SHA for 53fbce1
app/code/Magento/CatalogImportExport/Model/Import/Product.php
@@ -2226,10 +2226,11 @@ private function _parseAdditionalAttributes($rowData)
2226
$separatorPosition = strpos($attributeNameValuePair, self::PAIR_NAME_VALUE_SEPARATOR);
2227
if ($separatorPosition !== false) {
2228
$key = substr($attributeNameValuePair, 0, $separatorPosition);
2229
- $rowData[$key] = substr(
+ $value = substr(
2230
$attributeNameValuePair,
2231
$separatorPosition + strlen(self::PAIR_NAME_VALUE_SEPARATOR)
2232
);
2233
+ $rowData[$key] = $value === false ? '' : $value;
2234
}
2235
2236
return $rowData;
0 commit comments