summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-11-06 12:41:11 -0800
committerLukas Reschke <lukas@statuscode.ch>2012-11-06 12:41:11 -0800
commite482de381efa98d994279fbbc260e02d2984a49d (patch)
tree82f97d503b271c96bd2a2c56ac6d6c0c9e655d08
parent64ac208fb2e237f402af4bcaad8270086438061f (diff)
parent6339e71bdc286abc1881d160a89f8bf2d0a8c110 (diff)
downloadnextcloud-server-e482de381efa98d994279fbbc260e02d2984a49d.tar.gz
nextcloud-server-e482de381efa98d994279fbbc260e02d2984a49d.zip
Merge pull request #294 from owncloud/fix_ldap_typo_set_not_get_value
LDAP: fix typo in config value handling.
-rw-r--r--apps/user_ldap/lib/connection.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php
index ef92bbad40a..687e2692270 100644
--- a/apps/user_ldap/lib/connection.php
+++ b/apps/user_ldap/lib/connection.php
@@ -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;
}