From 9c922ed15a94567627891739c5f230fc7033cc92 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Thu, 31 Mar 2022 14:42:39 +0200 Subject: [PATCH] Fix assignment of the LDAP Wizard connection Signed-off-by: Christoph Wurst --- apps/user_ldap/lib/Wizard.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/Wizard.php b/apps/user_ldap/lib/Wizard.php index 98d399b77b9..ae9546be08b 100644 --- a/apps/user_ldap/lib/Wizard.php +++ b/apps/user_ldap/lib/Wizard.php @@ -1331,7 +1331,7 @@ class Wizard extends LDAPUtility { $this->configuration->ldapAgentName, $this->configuration->ldapAgentPassword); if ($lo === true) { - $this->$cr = $cr; + $this->cr = $cr; return $cr; } -- 2.39.5