LDAP: fix typo in config value handling.

This commit is contained in:
Arthur Schiwon 2012-11-06 20:16:37 +01:00
parent 64ac208fb2
commit 6339e71bdc
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class Connection {
\OCP\Util::writeLog('user_ldap', 'Set config ldapUuidAttribute to '.$value, \OCP\Util::DEBUG);
$this->config[$name] = $value;
if(!empty($this->configID)) {
\OCP\Config::getAppValue($this->configID, 'ldap_uuid_attribute', $value);
\OCP\Config::setAppValue($this->configID, 'ldap_uuid_attribute', $value);
}
$changed = true;
}