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 488c103 commit 78f4036Copy full SHA for 78f4036
app/code/Magento/CatalogImportExport/Model/Import/Product/Option.php
@@ -1912,9 +1912,7 @@ protected function _saveTitles(array $titles)
1912
if (!isset($existingOptionIds[$optionId]) && count($storeInfo) > 0) {
1913
$storeInfo = [Store::DEFAULT_STORE_ID => reset($storeInfo)] + $storeInfo;
1914
}
1915
- //for use default
1916
- $uniqStoreInfo = array_unique($storeInfo);
1917
- foreach ($uniqStoreInfo as $storeId => $title) {
+ foreach ($storeInfo as $storeId => $title) {
1918
$titleRows[] = ['option_id' => $optionId, 'store_id' => $storeId, 'title' => $title];
1919
1920
0 commit comments