mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed typo from last commit.
This commit is contained in:
parent
573a349209
commit
e37703efdd
1 changed files with 1 additions and 1 deletions
|
@ -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'])
|
||||
));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue