Fixing view file extension in config/routes.php docblock

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7567 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
nate 2008-09-07 14:36:06 +00:00
parent 094e07dc7e
commit 1520314cac

View file

@ -31,7 +31,7 @@
/**
* Here, we are connecting '/' (base path) to controller called 'Pages',
* its action called 'display', and we pass a param to select the view file
* to use (in this case, /app/views/pages/home.thtml)...
* to use (in this case, /app/views/pages/home.ctp)...
*/
Router::connect('/', array('controller' => 'pages', 'action' => 'display', 'home'));
/**