From 36ff2d8914a00bf8085615d30f341e801ac7b7bb Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Thu, 30 Jul 2015 09:32:24 +0200 Subject: [PATCH] lib: Set User::$isHttpUser in Auth refs #9660 --- library/Icinga/Authentication/Auth.php | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Icinga/Authentication/Auth.php b/library/Icinga/Authentication/Auth.php index e9be6b50f..7fee5b536 100644 --- a/library/Icinga/Authentication/Auth.php +++ b/library/Icinga/Authentication/Auth.php @@ -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;