diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-03-31 21:38:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-31 21:38:33 +0200 |
commit | 74826ed62828ba538d4d36b582d28488fd3b00c6 (patch) | |
tree | be2741836bad00f6fd9315bb8c0fb30773c5ce08 /apps | |
parent | 800fae0133f2e7321c0df3c9633138bcd8ac15b7 (diff) | |
parent | 9c922ed15a94567627891739c5f230fc7033cc92 (diff) | |
download | nextcloud-server-74826ed62828ba538d4d36b582d28488fd3b00c6.tar.gz nextcloud-server-74826ed62828ba538d4d36b582d28488fd3b00c6.zip |
Merge pull request #31779 from nextcloud/fix/ldap-wizard-getconnection
Fix assignment of the LDAP Wizard connection
Diffstat (limited to 'apps')
-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; } |