mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-17 04:18:24 +00:00
Removing legacy parameter setting.
This commit is contained in:
parent
814142e3dd
commit
6e1f45abb3
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ class CakeErrorController extends AppController {
|
||||||
function __construct() {
|
function __construct() {
|
||||||
parent::__construct();
|
parent::__construct();
|
||||||
$this->_set(Router::getPaths());
|
$this->_set(Router::getPaths());
|
||||||
$this->request = $this->params = Router::getRequest(false);
|
$this->request = Router::getRequest(false);
|
||||||
$this->constructClasses();
|
$this->constructClasses();
|
||||||
$this->Components->trigger('initialize', array(&$this));
|
$this->Components->trigger('initialize', array(&$this));
|
||||||
$this->_set(array('cacheAction' => false, 'viewPath' => 'errors'));
|
$this->_set(array('cacheAction' => false, 'viewPath' => 'errors'));
|
||||||
|
|
Loading…
Reference in a new issue