Routing: Handle MethodNotAllowedException

This commit is contained in:
Bart Visscher 2012-07-31 22:33:53 +02:00
parent 9d6a09f589
commit 006b127da4
1 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,7 @@
require_once('../lib/base.php');
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\Exception\MethodNotAllowedException;
OC::$router->useCollection('ocs');
OC::$router->loadRoutes();
@ -31,4 +32,6 @@ try {
OC::$router->match($_SERVER['PATH_INFO']);
} catch (ResourceNotFoundException $e) {
OC_OCS::notFound();
} catch (MethodNotAllowedException $e) {
OC_Response::setStatus(405);
}