From e684156bf7df536389965527af307df7aa6a582b Mon Sep 17 00:00:00 2001 From: brego Date: Thu, 29 Sep 2005 17:31:23 +0000 Subject: [PATCH] Changed more crappy formatting. git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1008 3807eeeb-6ff5-0310-8944-8be069107fe0 --- config/acl.ini.php | 2 +- config/routes.php | 8 ++++---- config/routes.php.default | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/config/acl.ini.php b/config/acl.ini.php index 0940ec8a8..f66d1ca3a 100644 --- a/config/acl.ini.php +++ b/config/acl.ini.php @@ -1,4 +1,4 @@ - +; ; acl.ini.php - Cake ACL Configuration ; --------------------------------------------------------------------- diff --git a/config/routes.php b/config/routes.php index 1d81a3743..671d1ba5c 100644 --- a/config/routes.php +++ b/config/routes.php @@ -38,17 +38,17 @@ * its action called 'display', and we pass a param to select the view file * to use (in this case, /app/views/pages/home.thtml)... */ -$Route->connect ('/', array('controller'=>'Pages', 'action'=>'display', 'home')); +$Route->connect('/', array('controller'=>'Pages', 'action'=>'display', 'home')); /** * ...and connect the rest of 'Pages' controller's urls. */ -$Route->connect ('/pages/*', array('controller'=>'Pages', 'action'=>'display')); +$Route->connect('/pages/*', array('controller'=>'Pages', 'action'=>'display')); /** * Then we connect url '/test' to our test controller. This is helpfull in * developement. */ -$Route->connect ('/test', array('controller'=>'Tests', 'action'=>'index')); +$Route->connect('/test', array('controller'=>'Tests', 'action'=>'index')); -?> +?> \ No newline at end of file diff --git a/config/routes.php.default b/config/routes.php.default index d28391028..bf19a9cd4 100644 --- a/config/routes.php.default +++ b/config/routes.php.default @@ -22,17 +22,17 @@ * and its action called 'display'. We pass a parameter to select the view file * to use (in this case, /app/views/pages/home.thtml). */ -$Route->connect ('/', array('controller'=>'Pages', 'action'=>'display', 'home')); +$Route->connect('/', array('controller'=>'Pages', 'action'=>'display', 'home')); /** * ...and connect the rest of 'Pages' controller's URLs. */ -$Route->connect ('/pages/*', array('controller'=>'Pages', 'action'=>'display')); +$Route->connect('/pages/*', array('controller'=>'Pages', 'action'=>'display')); /** * Then we connect url '/test' to our test controller. This is helpful in * development. */ -$Route->connect ('/test', array('controller'=>'Tests', 'action'=>'test_all')); +$Route->connect('/test', array('controller'=>'Tests', 'action'=>'test_all')); ?> \ No newline at end of file