summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2013-01-20 18:30:14 +0100
committerArthur Schiwon <blizzz@owncloud.com>2013-01-20 18:30:14 +0100
commit10876aba896be188be2883dbc059b93fea96bbf5 (patch)
treee763008ed4bede2c69437b117e0ca5c7da319514 /apps/user_ldap
parent0c3466325b858013acf799fa1cd65acaad48d723 (diff)
downloadnextcloud-server-10876aba896be188be2883dbc059b93fea96bbf5.tar.gz
nextcloud-server-10876aba896be188be2883dbc059b93fea96bbf5.zip
fix more config keys for save settings handling
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/connection.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php
index bf36db82232..7d9f82cf83d 100644
--- a/apps/user_ldap/lib/connection.php
+++ b/apps/user_ldap/lib/connection.php
@@ -303,10 +303,10 @@ class Connection {
foreach($this->config as $key => $value) {
\OCP\Util::writeLog('user_ldap', 'LDAP: storing key '.$key.' value '.$value, \OCP\Util::DEBUG);
switch ($key) {
- case 'ldap_agent_password':
+ case 'ldapAgentPassword':
$value = base64_encode($value);
break;
- case 'home_folder_naming_rule':
+ case 'homeFolderNamingRule':
$value = empty($value) ? 'opt:username' : 'attr:'.$value;
break;
case 'ldapIgnoreNamingRules':