Merge pull request #1470 from uzyn/csfix

CS fix.
This commit is contained in:
Christian Winther 2013-08-02 04:49:09 -07:00
commit 50b192eb1b

View file

@ -1065,13 +1065,13 @@ class RouterTest extends CakeTestCase {
Router::connect(
'/:lang/:color/posts/view/*',
array('controller' => 'posts', 'action' => 'view'),
array('persist' => array('lang', 'color')
));
array('persist' => array('lang', 'color'))
);
Router::connect(
'/:lang/:color/posts/index',
array('controller' => 'posts', 'action' => 'index'),
array('persist' => array('lang')
));
array('persist' => array('lang'))
);
Router::connect('/:lang/:color/posts/edit/*', array('controller' => 'posts', 'action' => 'edit'));
Router::connect('/about', array('controller' => 'pages', 'action' => 'view', 'about'));
Router::parse('/en/red/posts/view/5');