Skip to content

Commit

Permalink
MAGETWO-58289: [Github] Product URL Key not automatically generating …
Browse files Browse the repository at this point in the history
…during import #5128
  • Loading branch information
shiftedreality committed Sep 13, 2016
1 parent e6363a8 commit ebc946a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/code/Magento/CatalogImportExport/Model/Import/Product.php
Original file line number Diff line number Diff line change
Expand Up @@ -1473,6 +1473,10 @@ protected function _saveProducts()
}
$rowScope = $this->getRowScope($rowData);

if (empty($rowData[self::URL_KEY])) {
$rowData[self::URL_KEY] = $this->getUrlKey($rowData);
}

$rowSku = $rowData[self::COL_SKU];

if (null === $rowSku) {
Expand Down

0 comments on commit ebc946a

Please sign in to comment.