diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-03-31 11:10:06 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-03-31 11:10:06 +0200 |
commit | 4884ed6a5424034daff81dad0b09234a7303baed (patch) | |
tree | 3fceeb2f10e365ff08b530a5602fc624b9ec9b6d /lib/api/kolab_api_service_user.php | |
parent | a228de1f80379cc29b58bf2673fd4e3d56e953cd (diff) | |
download | webadmin-4884ed6a5424034daff81dad0b09234a7303baed.tar.gz |
Rename function user_attributes to get_attributes so it can sensibly be used for users, groups and other objects
Make sure the values in ldap modifications arrays are arrays
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 111456e..5810732 100644 --- a/lib/api/kolab_api_service_user.php +++ b/lib/api/kolab_api_service_user.php @@ -182,7 +182,7 @@ class kolab_api_service_user extends kolab_api_service } if (!empty($attrs)) { - $attrs = $auth->user_attributes($result['entrydn'], $attrs); + $attrs = $auth->get_attributes($result['entrydn'], $attrs); if (!empty($attrs)) { $result = array_merge($result, $attrs); } |