From 6b657d9a9d83ae63dd064359e09fadc91731980d Mon Sep 17 00:00:00 2001 From: Mark Story Date: Tue, 8 Dec 2009 23:07:43 -0500 Subject: [PATCH] Fixing failing tests due to incorrect merging. --- cake/libs/view/theme.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cake/libs/view/theme.php b/cake/libs/view/theme.php index 9ba42915b..fb0fae942 100644 --- a/cake/libs/view/theme.php +++ b/cake/libs/view/theme.php @@ -37,8 +37,8 @@ class ThemeView extends View { * * @param Controller $controller */ - function __construct(&$controller) { - parent::__construct($controller); + function __construct(&$controller, $register = true) { + parent::__construct($controller, $register); $this->theme =& $controller->theme; }