From 6e1f45abb36ebfa238bd83afe1e561edc6008876 Mon Sep 17 00:00:00 2001 From: mark_story Date: Sat, 1 Jan 2011 22:16:12 -0500 Subject: [PATCH] Removing legacy parameter setting. --- cake/libs/controller/cake_error_controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/libs/controller/cake_error_controller.php b/cake/libs/controller/cake_error_controller.php index 765e79f30..443024840 100644 --- a/cake/libs/controller/cake_error_controller.php +++ b/cake/libs/controller/cake_error_controller.php @@ -26,7 +26,7 @@ class CakeErrorController extends AppController { function __construct() { parent::__construct(); $this->_set(Router::getPaths()); - $this->request = $this->params = Router::getRequest(false); + $this->request = Router::getRequest(false); $this->constructClasses(); $this->Components->trigger('initialize', array(&$this)); $this->_set(array('cacheAction' => false, 'viewPath' => 'errors'));