diff --git a/cake/dispatcher.php b/cake/dispatcher.php index 95fec46d6..f3ab729e0 100644 --- a/cake/dispatcher.php +++ b/cake/dispatcher.php @@ -501,7 +501,9 @@ class Dispatcher extends Object { } if(!$ctrlClass) { - return false; + $controller = Inflector::camelize($this->plugin); + $this->plugin = null; + return $controller; } $this->params = $params;