From bcb4abd61b448ae7f7d9e15ef1df8fd068b62766 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Thu, 23 Aug 2007 06:43:40 +0000 Subject: [PATCH] commented out $currentController references, these are deprecated statics git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@40759 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- security/Security.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/security/Security.php b/security/Security.php index 485f74c93..9f5c4bcbb 100644 --- a/security/Security.php +++ b/security/Security.php @@ -136,7 +136,7 @@ class Security extends Controller { "Form" => $this->LostPasswordForm(), )); - Controller::$currentController = $controller; + //Controller::$currentController = $controller; return $customisedController->renderWith("Page"); } @@ -158,7 +158,7 @@ class Security extends Controller { "Content" => "

Thank you, your password has been sent to '$email'.

", )); - Controller::$currentController = $controller; + //Controller::$currentController = $controller; return $customisedController->renderWith("Page"); }