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 26d62b2 commit c62f49dCopy full SHA for c62f49d
app/code/Magento/CatalogImportExport/Model/Import/Product.php
@@ -1631,6 +1631,9 @@ protected function _saveProducts()
1631
$bunch[$rowNum][self::URL_KEY] = $rowData[self::URL_KEY] = $urlKey;
1632
}
1633
1634
+ // remove null byte character
1635
+ $rowData[self::COL_NAME] = preg_replace('/[\x00-\x1F\x7F]/', '', $rowData[self::COL_NAME]);
1636
+
1637
$rowSku = $rowData[self::COL_SKU];
1638
$rowSkuNormalized = mb_strtolower($rowSku);
1639
0 commit comments