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 1134f02 commit 8781bf0Copy full SHA for 8781bf0
app/code/Magento/User/Model/Backend/Observer/AuthObserver.php
@@ -130,10 +130,9 @@ public function adminAuthenticate($observer)
130
$this->_checkExpiredPassword($latestPassword);
131
132
// upgrade admin password
133
- $isValidHash = $this->encryptor->isValidHashByVersion(
+ $isValidHash = $this->encryptor->isValidHash(
134
$password,
135
- $user->getPassword(),
136
- Encryptor::HASH_VERSION_LATEST
+ $user->getPassword()
137
);
138
if (!$isValidHash) {
139
$this->userFactory->create()
0 commit comments