From 367d7a76fb42a87d0a036d27b3e30ecb9b5340bf Mon Sep 17 00:00:00 2001 From: nate Date: Wed, 9 Jan 2008 14:04:27 +0000 Subject: [PATCH] Whitespace fixes git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6351 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/dispatcher.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/cake/dispatcher.php b/cake/dispatcher.php index 76e467b38..e62043aa9 100644 --- a/cake/dispatcher.php +++ b/cake/dispatcher.php @@ -252,15 +252,15 @@ class Dispatcher extends Object { App::import('Core', 'Scaffold'); return new Scaffold($controller, $params); } elseif ($missingAction && !in_array('scaffold', array_keys($classVars))) { - return $this->cakeError('missingAction', array( - array( - 'className' => Inflector::camelize($params['controller']."Controller"), - 'action' => $params['action'], - 'webroot' => $this->webroot, - 'url' => $this->here, - 'base' => $this->base - ) - )); + return $this->cakeError('missingAction', array( + array( + 'className' => Inflector::camelize($params['controller']."Controller"), + 'action' => $params['action'], + 'webroot' => $this->webroot, + 'url' => $this->here, + 'base' => $this->base + ) + )); } else { $output = call_user_func_array(array(&$controller, $params['action']), empty($params['pass'])? array(): $params['pass']); }