diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-12 00:35:19 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-12 00:35:19 +0100 |
commit | 743addd1e317c760e8b1e4ad7dc149476e4ad282 (patch) | |
tree | 2f0b4d3f9c922153408d9919a8a52d14aec8edbf /ocs | |
parent | 364e1f852fe8640d7d6fa149f784a0d2d1de0a57 (diff) | |
download | nextcloud-server-743addd1e317c760e8b1e4ad7dc149476e4ad282.tar.gz nextcloud-server-743addd1e317c760e8b1e4ad7dc149476e4ad282.zip |
set content-type on ocs exceptions
Diffstat (limited to 'ocs')
-rw-r--r-- | ocs/v1.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ocs/v1.php b/ocs/v1.php index 1c7d1c89768..9d84f482ef7 100644 --- a/ocs/v1.php +++ b/ocs/v1.php @@ -28,8 +28,11 @@ use Symfony\Component\Routing\Exception\MethodNotAllowedException; try { OC::getRouter()->match('/ocs'.OC_Request::getRawPathInfo()); } catch (ResourceNotFoundException $e) { + OC_API::setContentType(); OC_OCS::notFound(); } catch (MethodNotAllowedException $e) { + setOcsContentType(); + OC_API::setContentType(); OC_Response::setStatus(405); } |