diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-03-31 14:42:39 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2022-04-14 13:28:10 +0200 |
commit | 766942a5547f8b7a812ab081b3a367429bbda734 (patch) | |
tree | 9e3e0ce7c8f31ed4e1f6803f2842de8e4e507197 /apps | |
parent | 6df2e22871f548d312410042c99d014b6548ed2a (diff) | |
download | nextcloud-server-766942a5547f8b7a812ab081b3a367429bbda734.tar.gz nextcloud-server-766942a5547f8b7a812ab081b3a367429bbda734.zip |
Fix assignment of the LDAP Wizard connection
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
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 9b037b47134..6e0d6f80f8d 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; } |