From b9b2cbbdc52e37e4c97ddc8a699b3b019bbeef64 Mon Sep 17 00:00:00 2001 From: Oliver Gasser Date: Fri, 22 Aug 2014 13:53:25 +0200 Subject: [PATCH] Update routes.rst Remove unmatching parenthesis. --- developer_manual/app/routes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/app/routes.rst b/developer_manual/app/routes.rst index 96f335cb2..f8de1fd28 100644 --- a/developer_manual/app/routes.rst +++ b/developer_manual/app/routes.rst @@ -92,7 +92,7 @@ Sometimes its needed to match more than one URL fragment. An example would be to // Request: OPTIONS /index.php/apps/myapp/api/my/route // appinfo/routes.php - array('name' => 'author_api#cors', 'url' => '/api/{path}', 'verb' => 'OPTIONS'), + array('name' => 'author_api#cors', 'url' => '/api/{path}', 'verb' => 'OPTIONS', 'requirements' => array('path' => '.+')), // controller/authorapicontroller.php