Merge pull request #23032 from owncloud/basephp-showclierror
Do not set response status in CLI in case of error
This commit is contained in:
commit
2098573614
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue