We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c705bf commit 595527aCopy full SHA for 595527a
app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/options.phtml
@@ -88,7 +88,9 @@ $stores = $block->getStoresSortedBySortOrder();
88
$values = [];
89
foreach($block->getOptionValues() as $value) {
90
$value = $value->getData();
91
- $values[] = is_array($value) ? array_map("htmlspecialchars_decode", $value) : $value;
+ $values[] = is_array($value) ? array_map(function($str) {
92
+ return htmlspecialchars_decode($str, ENT_QUOTES);
93
+ }, $value) : $value;
94
}
95
?>
96
<script type="text/x-magento-init">
0 commit comments