mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
LDAP: fix wrong index
This commit is contained in:
parent
b3b0544e17
commit
b5ed8b2751
1 changed files with 1 additions and 1 deletions
|
|
@ -365,7 +365,7 @@ ingle parameters
|
|||
if(strpos($this->config[$classKey], 'opt') === 0) {
|
||||
$config[$dbKey] = '';
|
||||
} else {
|
||||
$config[$dbKey] = substr($this->config[$dbKey], 5);
|
||||
$config[$dbKey] = substr($this->config[$classKey], 5);
|
||||
}
|
||||
continue;
|
||||
} else if((strpos($classKey, 'ldapBase') !== false)
|
||||
|
|
|
|||
Loading…
Reference in a new issue