diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2013-01-20 18:30:14 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2013-01-20 18:30:14 +0100 |
commit | 10876aba896be188be2883dbc059b93fea96bbf5 (patch) | |
tree | e763008ed4bede2c69437b117e0ca5c7da319514 /apps/user_ldap | |
parent | 0c3466325b858013acf799fa1cd65acaad48d723 (diff) | |
download | nextcloud-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.php | 4 |
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': |