diff --git a/lib/Cake/Error/ExceptionRenderer.php b/lib/Cake/Error/ExceptionRenderer.php index b55236d6d..944e1b104 100644 --- a/lib/Cake/Error/ExceptionRenderer.php +++ b/lib/Cake/Error/ExceptionRenderer.php @@ -92,7 +92,8 @@ class ExceptionRenderer { $this->controller = $this->_getController($exception); if (method_exists($this->controller, 'appError')) { - return $this->controller->appError($exception); + $this->controller->appError($exception); + return; } $method = $template = Inflector::variable(str_replace('Exception', '', get_class($exception))); $code = $exception->getCode();