mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 00:48:25 +00:00
Only try to use CakeErrorController if AppController exists.
This fixes missing error pages when there are parse errors in AppController. Fixes #3850
This commit is contained in:
parent
76f4d10d13
commit
41e0c524f2
1 changed files with 8 additions and 6 deletions
|
@ -151,12 +151,14 @@ class ExceptionRenderer {
|
|||
$response->header($exception->responseHeader());
|
||||
}
|
||||
|
||||
try {
|
||||
$controller = new CakeErrorController($request, $response);
|
||||
$controller->startupProcess();
|
||||
} catch (Exception $e) {
|
||||
if (!empty($controller) && $controller->Components->enabled('RequestHandler')) {
|
||||
$controller->RequestHandler->startup($controller);
|
||||
if (class_exists('AppController')) {
|
||||
try {
|
||||
$controller = new CakeErrorController($request, $response);
|
||||
$controller->startupProcess();
|
||||
} catch (Exception $e) {
|
||||
if (!empty($controller) && $controller->Components->enabled('RequestHandler')) {
|
||||
$controller->RequestHandler->startup($controller);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (empty($controller)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue