summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorMichael Francis <edude03@gmail.com>2011-06-20 18:59:08 -0400
committerMichael Francis <edude03@gmail.com>2011-06-20 18:59:08 -0400
commit6c84c1a29b57010b3f6b16395663bf6bbf4d268b (patch)
treefa538905d18d2ef00bf984cbdf399a98d25f4228 /config
parenta5c44068213aa44a43a15947feb3e905623a8db3 (diff)
downloadotakuhub-6c84c1a29b57010b3f6b16395663bf6bbf4d268b.tar.xz
Since contentList controller is being depreciated, removed the route for it
Diffstat (limited to 'config')
-rw-r--r--config/routes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.php b/config/routes.php
index 08aeacd..1da09b9 100644
--- a/config/routes.php
+++ b/config/routes.php
@@ -55,7 +55,7 @@ Router::connect('/logout', array('controller' => 'users', 'action' => 'logout'))
/* Content routes */
//Router::connect('/anime', array('controller' => 'content', 'action' => 'anime'));
-Router::connect('/anime/{:args}', array('controller' => 'anime', 'action' => 'view'));
+//Router::connect('/anime/{:args}', array('controller' => 'anime', 'action' => 'view'));
//Pagination route
Router::connect('/{:controller}/{:action}/page:{:page:[0-9]+}');