mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-06 03:22:39 +00:00
Helpers in custom CakeErrorController are lost
Since many exceptions do not have its own 'template' file, customized APP/Controller/CakeErrorController with its own list of helpers could be ignored. This happens becase ExceptionRenderer is forced to to use _outputMessageSafe when a template is missing. This causes Controller::$helpers to be reset with default values.
This commit is contained in:
parent
483d7124dd
commit
07d9a75fcb
6 changed files with 94 additions and 0 deletions
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
App::uses('CakeErrorController', 'Controller');
|
||||
|
||||
class TestAppsErrorController extends CakeErrorController {
|
||||
|
||||
public $helpers = array(
|
||||
'Html',
|
||||
'Session',
|
||||
'Form',
|
||||
'Banana',
|
||||
);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue