diff --git a/library/Icinga/Authentication/Auth.php b/library/Icinga/Authentication/Auth.php index 92d352f6c..f80326999 100644 --- a/library/Icinga/Authentication/Auth.php +++ b/library/Icinga/Authentication/Auth.php @@ -289,7 +289,7 @@ class Auth } list($scheme) = explode(' ', $header, 2); if ($scheme !== 'Basic') { - $this->challengeHttp(); + return false; } $authorization = substr($header, strlen('Basic ')); $credentials = base64_decode($authorization);