diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-03-31 14:42:39 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-03-31 14:42:39 +0200 |
commit | 9c922ed15a94567627891739c5f230fc7033cc92 (patch) | |
tree | 6147a8a435b07075f05f95503ec77b9c5714e1c4 | |
parent | d4c558a229080670ad9fc5ba8083a648b2ab74ac (diff) | |
download | nextcloud-server-9c922ed15a94567627891739c5f230fc7033cc92.tar.gz nextcloud-server-9c922ed15a94567627891739c5f230fc7033cc92.zip |
Fix assignment of the LDAP Wizard connection
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r-- | apps/user_ldap/lib/Wizard.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |