Fixed typo from last commit.

This commit is contained in:
Renan Gonçalves 2011-10-16 13:42:50 +02:00
parent 573a349209
commit e37703efdd

View file

@ -82,7 +82,7 @@ class Dispatcher {
if (!($controller instanceof Controller)) {
throw new MissingControllerException(array(
'class' => Inflector::camelize($request->params['controller']) . 'Controller',
'plugin' => empty($request->params['controller']) ? null : Inflector::camelize($request->params['plugin'])
'plugin' => empty($request->params['plugin']) ? null : Inflector::camelize($request->params['plugin'])
));
}