Merge pull request #294 from owncloud/fix_ldap_typo_set_not_get_value

LDAP: fix typo in config value handling.
This commit is contained in:
Lukas Reschke 2012-11-06 12:41:11 -08:00
commit e482de381e
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;
}