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.
2 parents 8e7b04e + f9d1f9a commit 8ae91cfCopy full SHA for 8ae91cf
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