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 cd874b1 commit d2b3457Copy full SHA for d2b3457
app/code/Magento/Customer/Controller/Adminhtml/Index/Save.php
@@ -349,7 +349,7 @@ public function execute()
349
['customer' => $customer, 'request' => $this->getRequest()]
350
);
351
352
- if (isset($customerData['sendemail_store_id']) && !empty($customerData['sendemail_store_id'])) {
+ if (isset($customerData['sendemail_store_id']) && $customerData['sendemail_store_id'] !== false) {
353
$customer->setStoreId($customerData['sendemail_store_id']);
354
try {
355
$this->customerAccountManagement->validateCustomerStoreIdByWebsiteId($customer);
0 commit comments