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 02d1e1b commit e6dc188Copy full SHA for e6dc188
app/code/Magento/Catalog/Controller/Adminhtml/Product/Attribute/Save.php
@@ -327,7 +327,8 @@ private function preprocessOptionsData(&$data)
327
$serializedOptions = json_decode($data['serialized_options'], JSON_OBJECT_AS_ARRAY);
328
foreach ($serializedOptions as $serializedOption) {
329
$option = [];
330
- parse_str($serializedOption, $option);
+ $serializedOptionWithParsedAmpersand = str_replace('&', '%26', $serializedOption);
331
+ parse_str($serializedOptionWithParsedAmpersand, $option);
332
$data = array_replace_recursive($data, $option);
333
}
334
0 commit comments