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 8e25924 + 6278314 commit 042d20fCopy full SHA for 042d20f
app/code/Magento/Catalog/Controller/Adminhtml/Product/Action/Attribute/Save.php
@@ -132,7 +132,7 @@ public function execute()
132
$attributesData[$attributeCode] = $value;
133
} elseif ($attribute->getFrontendInput() == 'multiselect') {
134
// Check if 'Change' checkbox has been checked by admin for this attribute
135
- $isChanged = (bool)$this->getRequest()->getPost($attributeCode . '_checkbox');
+ $isChanged = (bool)$this->getRequest()->getPost('toggle_' . $attributeCode);
136
if (!$isChanged) {
137
unset($attributesData[$attributeCode]);
138
continue;
0 commit comments