lib: Set User::$isHttpUser in Auth

refs #9660
This commit is contained in:
Eric Lippmann 2015-07-30 09:32:24 +02:00
parent 775f8cced6
commit 36ff2d8914

View File

@ -256,6 +256,7 @@ class Auth
$password = $credentials[1];
if ($this->getAuthChain()->setSkipExternalBackends(true)->authenticate($user, $password)) {
$this->setAuthenticated($user, false);
$user->setIsHttpUser(true);
return true;
} else {
return false;