Changed more crappy formatting.

git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1008 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
brego 2005-09-29 17:31:23 +00:00
parent f1292b5b76
commit e684156bf7
3 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
<? die(); ?>
;<? die(); ?>
; acl.ini.php - Cake ACL Configuration
; ---------------------------------------------------------------------

View file

@ -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'));
?>

View file

@ -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'));
?>