Более точное условие для автоматической смены пароля в форме входа

This commit is contained in:
ErickSkrauch 2016-11-02 00:04:10 +03:00
parent b6b579b721
commit 93f8d170dc

View File

@ -77,7 +77,7 @@ class LoginForm extends ApiForm {
}
$account = $this->getAccount();
if ($account->password_hash_strategy === Account::PASS_HASH_STRATEGY_OLD_ELY) {
if ($account->password_hash_strategy !== Account::PASS_HASH_STRATEGY_YII2) {
$account->setPassword($this->password);
$account->save();
}