diff options
Diffstat (limited to 'core/config')
-rw-r--r-- | core/config/routes.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/core/config/routes.php b/core/config/routes.php index de66b8fb..465fb885 100644 --- a/core/config/routes.php +++ b/core/config/routes.php @@ -24,11 +24,7 @@ $config['^rest'] = null; $config['^rest/.*'] = null; $config['^(\w+)/(\d+)$'] = '$1/dispatch/$2'; +$config['^form/(\w+)/(.*)$'] = '$1/form/$2'; // For now our default page is the scaffolding. $config['_default'] = 'welcome'; - -// Special routes for the comment module. -// @todo Dynamically load this. -$config['photo/(\d+)/comments/add$'] = 'comment/add/$1'; -$config['photo/(\d+)/comments$'] = 'comment/get_item_comments/$1'; |