From eda3d2cfeee5d7fb08661fc88e9dcd7fde82d367 Mon Sep 17 00:00:00 2001 From: pies Date: Mon, 23 May 2005 23:20:32 +0000 Subject: [PATCH] The default home route was correct after all ;) git-svn-id: https://svn.cakephp.org/repo/trunk/cake@166 3807eeeb-6ff5-0310-8944-8be069107fe0 --- config/routes.php.default | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.php.default b/config/routes.php.default index 70211c610..cd54581ac 100644 --- a/config/routes.php.default +++ b/config/routes.php.default @@ -36,7 +36,7 @@ * Here, we are connecting '/' (base path) to controller called 'Pages', and * its action called 'index' - note there are no additional params passed. */ -$Route->connect ('/', array('controller'=>'Pages', 'action'=>'index')); +$Route->connect ('/', array('controller'=>'Pages', 'action'=>'view', 'home')); /** * Here we connect url '/test' to our test controller. This is helpfull in