Archived
1
0
Fork 0

app/library/Auth.php: minor fix.

This commit is contained in:
Henrik Hautakoski 2018-08-11 20:15:03 +02:00
parent b47f2eb741
commit b722ecd836
No known key found for this signature in database
GPG key ID: 839F3A7EAFAEAFAA

View file

@ -32,7 +32,7 @@ class Auth extends Component
$this->setIdentity($user->getId());
$this->_eventsManager->fire('auth:onLogin', $this, 'password');
$this->eventsManager->fire('auth:onLogin', $this, 'password');
return true;
}
@ -61,7 +61,7 @@ class Auth extends Component
$this->setIdentity($user->getId());
$this->_eventsManager->fire('auth:onLogin', $this,
$this->eventsManager->fire('auth:onLogin', $this,
"OAuth {$data->getProvider()}");
return true;