Send a proper response for status.php on trusted domain error
* fixes #7732 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
1194e4c2bd
commit
37026d8b9d
10
lib/base.php
10
lib/base.php
|
@ -779,8 +779,16 @@ class OC {
|
|||
$isScssRequest = true;
|
||||
}
|
||||
|
||||
if(substr($request->getRequestUri(), -11) === '/status.php') {
|
||||
OC_Response::setStatus(\OC_Response::STATUS_BAD_REQUEST);
|
||||
header('Status: 400 Bad Request');
|
||||
header('Content-Type: application/json');
|
||||
echo '{"error": "Trusted domain error.", "code": 15}';
|
||||
exit();
|
||||
}
|
||||
|
||||
if (!$isScssRequest) {
|
||||
header('HTTP/1.1 400 Bad Request');
|
||||
OC_Response::setStatus(\OC_Response::STATUS_BAD_REQUEST);
|
||||
header('Status: 400 Bad Request');
|
||||
|
||||
\OC::$server->getLogger()->warning(
|
||||
|
|
Loading…
Reference in New Issue