From 7412bd91ca5980bcba8e0e12d8f60b35181757c4 Mon Sep 17 00:00:00 2001 From: Aparup Banerjee Date: Tue, 21 Sep 2010 03:49:22 +0000 Subject: [PATCH] Administration MDL-24247 fixed undefined variable typo --- login/forgot_password.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/login/forgot_password.php b/login/forgot_password.php index 340c2f7c7fd..4bb0e954e05 100644 --- a/login/forgot_password.php +++ b/login/forgot_password.php @@ -36,7 +36,7 @@ httpsrequired(); $systemcontext = get_context_instance(CONTEXT_SYSTEM); $PAGE->set_url('/login/forgot_password.php'); -$PAGE->set_context($syscontext); +$PAGE->set_context($systemcontext); // setup text strings $strforgotten = get_string('passwordforgotten');