From 0c64c64b4855ceab7f40fb402e062061cc774729 Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Fri, 5 Jan 2018 10:21:12 +1300 Subject: [PATCH] MDL-61050 auth_ldap: fix regression caused by MDL-42834 --- auth/ldap/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/ldap/auth.php b/auth/ldap/auth.php index 92948c13c89..b923003dd4a 100644 --- a/auth/ldap/auth.php +++ b/auth/ldap/auth.php @@ -1624,7 +1624,7 @@ class auth_plugin_ldap extends auth_plugin_base { $sesskey = sesskey(); redirect($CFG->wwwroot.'/auth/ldap/ntlmsso_magic.php?sesskey='.$sesskey); } else if ($this->config->ntlmsso_ie_fastpath == AUTH_NTLM_FASTPATH_YESFORM) { - redirect($CFG-wwwroot.'/login/index.php?authldap_skipntlmsso=1'); + redirect($CFG->wwwroot.'/login/index.php?authldap_skipntlmsso=1'); } } redirect($CFG->wwwroot.'/auth/ldap/ntlmsso_attempt.php');