Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-03-31 22:38:33 +0300
committerGitHub <noreply@github.com>2022-03-31 22:38:33 +0300
commit74826ed62828ba538d4d36b582d28488fd3b00c6 (patch)
treebe2741836bad00f6fd9315bb8c0fb30773c5ce08 /apps
parent800fae0133f2e7321c0df3c9633138bcd8ac15b7 (diff)
parent9c922ed15a94567627891739c5f230fc7033cc92 (diff)
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.php2
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;
}