From f367ec550992a5f0d5c5a66a223ba22c2b8f8c6f Mon Sep 17 00:00:00 2001 From: nate Date: Wed, 5 Jul 2006 14:23:21 +0000 Subject: [PATCH] Fixing typo in Security component constructor git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3203 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/libs/controller/components/security.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/libs/controller/components/security.php b/cake/libs/controller/components/security.php index 5f219f3e4..2bfd392db 100644 --- a/cake/libs/controller/components/security.php +++ b/cake/libs/controller/components/security.php @@ -63,7 +63,7 @@ class SecurityComponent extends Object { * */ function __construct () { - $this->Security = Security::getInstance(); + $this->Security =& Security::getInstance(); } function startup(&$controller) {