Return 404 on v2.php when the app is disabled
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
0a683682b2
commit
bbbad09383
|
@ -37,7 +37,7 @@ class OC_OCS {
|
||||||
$format = \OC::$server->getRequest()->getParam('format', 'xml');
|
$format = \OC::$server->getRequest()->getParam('format', 'xml');
|
||||||
$txt='Invalid query, please check the syntax. API specifications are here:'
|
$txt='Invalid query, please check the syntax. API specifications are here:'
|
||||||
.' http://www.freedesktop.org/wiki/Specifications/open-collaboration-services. DEBUG OUTPUT:'."\n";
|
.' http://www.freedesktop.org/wiki/Specifications/open-collaboration-services. DEBUG OUTPUT:'."\n";
|
||||||
OC_API::respond(new OC_OCS_Result(null, API::RESPOND_UNKNOWN_ERROR, $txt), $format);
|
OC_API::respond(new OC_OCS_Result(null, API::RESPOND_NOT_FOUND, $txt), $format);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue