summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorMichael Francis <edude03@gmail.com>2011-06-05 21:21:24 -0400
committerMichael Francis <edude03@gmail.com>2011-06-05 21:21:24 -0400
commit6ce5cd79202821ad090c452e7f800eed5936d4ba (patch)
tree47fbddcfbf7c9cc2d6f66031ed63516a94270f6c /config
parent08153b61b6bdfe5a31ca1a571e682c3b5f55bfb7 (diff)
downloadotakuhub-6ce5cd79202821ad090c452e7f800eed5936d4ba.tar.xz
Disabled ContentList for anime :/
Diffstat (limited to 'config')
-rw-r--r--config/routes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/routes.php b/config/routes.php
index bde33dd..08aeacd 100644
--- a/config/routes.php
+++ b/config/routes.php
@@ -54,8 +54,8 @@ Router::connect('/login', array('controller' => 'users', 'action' => 'login'));
Router::connect('/logout', array('controller' => 'users', 'action' => 'logout'));
/* Content routes */
-Router::connect('/anime', array('controller' => 'content', 'action' => 'anime'));
-Router::connect('/anime/{:args}', array('controller' => 'content', 'action' => 'anime'));
+//Router::connect('/anime', array('controller' => 'content', 'action' => 'anime'));
+Router::connect('/anime/{:args}', array('controller' => 'anime', 'action' => 'view'));
//Pagination route
Router::connect('/{:controller}/{:action}/page:{:page:[0-9]+}');