Skip to content

Commit d7cfbdb

Browse files
committed
MAGETWO-95105: [2.3] URL Key column with accented characters not converted after importing the CSV file
- Adding url formatting to product import
1 parent 2eb6f84 commit d7cfbdb

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/CatalogImportExport/Model/Import

1 file changed

+1
-1
lines changed

app/code/Magento/CatalogImportExport/Model/Import/Product.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2839,7 +2839,7 @@ protected function getProductUrlSuffix($storeId = null)
28392839
protected function getUrlKey($rowData)
28402840
{
28412841
if (!empty($rowData[self::URL_KEY])) {
2842-
return strtolower($rowData[self::URL_KEY]);
2842+
return $this->productUrl->formatUrlKey($rowData[self::URL_KEY]);
28432843
}
28442844

28452845
if (!empty($rowData[self::COL_NAME])) {

0 commit comments

Comments
 (0)