diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-03-31 13:56:06 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-03-31 13:56:06 +0200 |
commit | f5a58c5eaa14f741cb582e9a1b2b60bcb9811c99 (patch) | |
tree | 264c6f69ca995223042fd4559100cd3c59e55ece /lib/api/kolab_api_service_user.php | |
parent | b8bba11531399482b2c24ab273649e3156e66859 (diff) | |
download | webadmin-f5a58c5eaa14f741cb582e9a1b2b60bcb9811c99.tar.gz |
Move to use configuration value 'unique_attribute' and 'user_name_attribute' and 'group_name_attribute' instead of it's short equivalents (write once read many times)
Move some of the LDAP logic in modifying entries back to where it belongs in Auth::LDAP instead of the lib/api/ files
Diffstat (limited to 'lib/api/kolab_api_service_user.php')
-rw-r--r-- | lib/api/kolab_api_service_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/kolab_api_service_user.php b/lib/api/kolab_api_service_user.php index 5810732..222d5a7 100644 --- a/lib/api/kolab_api_service_user.php +++ b/lib/api/kolab_api_service_user.php @@ -172,7 +172,7 @@ class kolab_api_service_user extends kolab_api_service } // Insert the persistent, unique attribute - $unique_attr = $conf->get('unique_attr'); + $unique_attr = $conf->get('unique_attribute'); if (!$unique_attr) { $unique_attr = 'nsuniqueid'; } |