Skip to content

Commit

Permalink
Fixed wrong 'Errors' (was 'errors') viewPath passed into Error Contro…
Browse files Browse the repository at this point in the history
…ller in ExceptionRenderer::_getController() after renaming of lib/Cake/Views/Errors
  • Loading branch information
Thomas Ploch committed May 15, 2011
1 parent f2da8df commit 4f811f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Error/ExceptionRenderer.php
Expand Up @@ -152,7 +152,7 @@ protected function _getController($exception) {
$controller = new CakeErrorController($request); $controller = new CakeErrorController($request);
} catch (Exception $e) { } catch (Exception $e) {
$controller = new Controller($request); $controller = new Controller($request);
$controller->viewPath = 'errors'; $controller->viewPath = 'Errors';
} }
return $controller; return $controller;
} }
Expand Down

0 comments on commit 4f811f0

Please sign in to comment.