diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-04-29 13:58:21 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-04-30 11:13:03 +0000 |
commit | f4420625f8ecef11b64de827db7618cbff37681c (patch) | |
tree | 45e304cfccffef7fbfdc338a00176a8c1a11b143 /apps/user_ldap | |
parent | 3750072975e1d487dd2414f0cdb751ec02c7806c (diff) | |
download | nextcloud-server-f4420625f8ecef11b64de827db7618cbff37681c.tar.gz nextcloud-server-f4420625f8ecef11b64de827db7618cbff37681c.zip |
fix(user_ldap): Fix a var name
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/lib/Connection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Connection.php b/apps/user_ldap/lib/Connection.php index 37f7dcaea5c..27b1766bc1a 100644 --- a/apps/user_ldap/lib/Connection.php +++ b/apps/user_ldap/lib/Connection.php @@ -438,7 +438,7 @@ class Connection extends LDAPUtility { $backupPort = (int)$this->configuration->ldapBackupPort; if ($backupPort <= 0) { - $this->configuration->backupPort = $this->configuration->ldapPort; + $this->configuration->ldapBackupPort = $this->configuration->ldapPort; } //make sure empty search attributes are saved as simple, empty array |