Merge pull request #20 from nextcloud/fix-3rdparty-notice

Print error message again, when 3rdparty submodule is not initialized
This commit is contained in:
blizzz 2016-06-08 10:59:12 +02:00
commit bc8fe825b2
1 changed files with 3 additions and 1 deletions

View File

@ -501,7 +501,9 @@ class OC {
} catch (\RuntimeException $e) {
if (!self::$CLI) {
OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
$claimedProtocol = strtoupper($_SERVER['SERVER_PROTOCOL']);
$protocol = in_array($claimedProtocol, ['HTTP/1.0', 'HTTP/1.1', 'HTTP/2']) ? $claimedProtocol : 'HTTP/1.1';
header($protocol . ' ' . OC_Response::STATUS_SERVICE_UNAVAILABLE);
}
// we can't use the template error page here, because this needs the
// DI container which isn't available yet