Possibly fixing the test

This commit is contained in:
Michael 2021-11-18 08:03:50 +00:00
parent 5a5110d45a
commit 3dd35ef6ec
1 changed files with 4 additions and 1 deletions

View File

@ -177,7 +177,10 @@ class BasicAuth
return 0;
}
Logger::debug('Access denied', ['parameters' => $_SERVER]);
header('WWW-Authenticate: Basic realm="Friendica"');
// Checking for commandline for the tests, we have to avoid to send a header
if (php_sapi_name() !== 'cli') {
header('WWW-Authenticate: Basic realm="Friendica"');
}
throw new UnauthorizedException("This API requires login");
}