File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
app/code/Magento/CatalogImportExport/Model/Import Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -1561,10 +1561,6 @@ protected function _saveProducts()
15611561 }
15621562 $ rowScope = $ this ->getRowScope ($ rowData );
15631563
1564- /**
1565- * Only populate URL KEY if a value has been provided.
1566- * @see https://github.com/magento/magento2/issues/17023
1567- */
15681564 if ($ urlKey = $ this ->getUrlKey ($ rowData )) {
15691565 $ rowData [self ::URL_KEY ] = $ urlKey ;
15701566 }
@@ -2416,7 +2412,6 @@ private function isNeedToValidateUrlKey($rowData)
24162412 * If the product exists, assume it already has a URL Key and even
24172413 * if a name is provided in the import data, it should not be used
24182414 * to overwrite that existing URL Key the product already has.
2419- * @see https://github.com/magento/magento2/issues/17023
24202415 */
24212416 $ isSkuExist = $ this ->isSkuExist ($ rowData [self ::COL_SKU ]);
24222417 if ($ isSkuExist && !array_key_exists (self ::URL_KEY , $ rowData )) {
@@ -2739,7 +2734,6 @@ protected function getUrlKey($rowData)
27392734 /**
27402735 * If the product already exists, do not overwrite its
27412736 * URL Key with a value generated from the provided name.
2742- * @see https://github.com/magento/magento2/issues/17023
27432737 */
27442738 if ($ this ->isSkuExist ($ rowData [self ::COL_SKU ])) {
27452739 return false ;
You can’t perform that action at this time.
0 commit comments