Add CORS header to status.php so that we can migrate to a JS based check in the future

This commit is contained in:
Lukas Reschke 2015-08-22 14:44:02 +02:00
parent 0a1d551090
commit c9e2a2f56e
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ try {
if (OC::$CLI) {
print_r($values);
} else {
header('Access-Control-Allow-Origin: *');
header('Content-Type: application/json');
echo json_encode($values);
}