Do not set response status in CLI in case of error

This commit is contained in:
Vincent Petry 2016-03-09 15:40:34 +01:00 committed by Joas Schilling
parent 4030b82c97
commit f374368568

View file

@ -509,7 +509,9 @@ class OC {
require_once $vendorAutoLoad;
} catch (\RuntimeException $e) {
OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
if (!self::$CLI) {
OC_Response::setStatus(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
print($e->getMessage());