Skip to content

Commit 1f13ba9

Browse files
Bugfix for #7350
Product export duplicate rows for product with html special chars in data
1 parent 6619bdf commit 1f13ba9

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ protected function collectRawData()
961961

962962
if ($storeId != Store::DEFAULT_STORE_ID
963963
&& isset($data[$itemId][Store::DEFAULT_STORE_ID][$fieldName])
964-
&& $data[$itemId][Store::DEFAULT_STORE_ID][$fieldName] == $attrValue
964+
&& $data[$itemId][Store::DEFAULT_STORE_ID][$fieldName] == htmlspecialchars_decode($attrValue)
965965
) {
966966
continue;
967967
}

0 commit comments

Comments
 (0)