Skip to content

Commit

Permalink
Bugfix for #7350
Browse files Browse the repository at this point in the history
Product export duplicate rows for product with html special chars in data
  • Loading branch information
volodyaprokopchuk committed Nov 8, 2016
1 parent 6619bdf commit 1f13ba9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ protected function collectRawData()

if ($storeId != Store::DEFAULT_STORE_ID
&& isset($data[$itemId][Store::DEFAULT_STORE_ID][$fieldName])
&& $data[$itemId][Store::DEFAULT_STORE_ID][$fieldName] == $attrValue
&& $data[$itemId][Store::DEFAULT_STORE_ID][$fieldName] == htmlspecialchars_decode($attrValue)
) {
continue;
}
Expand Down

0 comments on commit 1f13ba9

Please sign in to comment.