Fix class name in scaffold error.

Fixes #6061
This commit is contained in:
mark_story 2015-03-12 21:59:38 -04:00
parent 5f90f455fd
commit 8e735c2db0

View file

@ -399,7 +399,7 @@ class Scaffold {
} }
} else { } else {
throw new MissingActionException(array( throw new MissingActionException(array(
'controller' => $this->controller->name, 'controller' => get_class($this->controller),
'action' => $request->action 'action' => $request->action
)); ));
} }