Skip to content

Commit c070753

Browse files
AC-3064: Fix the 'editPost' action
1 parent e572009 commit c070753

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/code/Magento/Customer/Controller/Account/EditPost.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ public function __construct(
161161
$this->addressRegistry = $addressRegistry ?: ObjectManager::getInstance()->get(AddressRegistry::class);
162162
$this->filesystem = $filesystem ?: ObjectManager::getInstance()->get(Filesystem::class);
163163
$this->sessionCleaner = $sessionCleaner ?: ObjectManager::getInstance()->get(SessionCleanerInterface::class);
164-
$this->accountConfirmation = $accountConfirmation ?: ObjectManager::getInstance()->get(AccountConfirmation::class);
164+
$this->accountConfirmation = $accountConfirmation ?: ObjectManager::getInstance()
165+
->get(AccountConfirmation::class);
165166
$this->customerUrl = $customerUrl ?: ObjectManager::getInstance()->get(Url::class);
166167
}
167168

0 commit comments

Comments
 (0)