From 4ff0997c7579539a5da7b8dba6bf6613264bf8a9 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Wed, 19 Nov 2008 04:22:17 +0000 Subject: Fix a mistake in the route that let people try to get to the rest controller (it would fail, but this way they get a 404 instead of another error). --- core/config/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/config/routes.php b/core/config/routes.php index ac4a8cb0..9e86def6 100644 --- a/core/config/routes.php +++ b/core/config/routes.php @@ -19,7 +19,7 @@ */ // The abstract REST_Controller is not directly routable. -$config['^rest\b'] = null; +$config['^rest\b.*'] = null; // For now our default page is the scaffolding. $config['_default'] = 'welcome'; -- cgit v1.2.3