diff options
author | Jeroen van Meeuwen <kanarip@kanarip.ch> | 2019-10-21 13:14:47 +0200 |
---|---|---|
committer | Jeroen van Meeuwen <kanarip@kanarip.ch> | 2019-10-21 13:14:47 +0200 |
commit | d8b844e587b38b77b31548e35aa037ab0d86014c (patch) | |
tree | 281d25fcbe1a857d26605396663244589802a9aa /lib/api/kolab_api_service_user.php | |
parent | 3bcbae57966527f43674271f25e0e0b6455cdfd0 (diff) | |
download | webadmin-d8b844e587b38b77b31548e35aa037ab0d86014c.tar.gz |
Lower-case the names of array keyskolab-webadmin-3.2.15
Diffstat (limited to 'lib/api/kolab_api_service_user.php')
-rw-r--r-- | lib/api/kolab_api_service_user.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/api/kolab_api_service_user.php b/lib/api/kolab_api_service_user.php index d63636d..ae3b442 100644 --- a/lib/api/kolab_api_service_user.php +++ b/lib/api/kolab_api_service_user.php @@ -43,20 +43,20 @@ class kolab_api_service_user extends kolab_api_service $rights = array(); - if (in_array('add', $effective_rights['entryLevelRights'])) { + if (in_array('add', $effective_rights['entrylevelrights'])) { $rights['add'] = "w"; } - if (in_array('delete', $effective_rights['entryLevelRights'])) { + if (in_array('delete', $effective_rights['entrylevelrights'])) { $rights['delete'] = "w"; } - if (in_array('modrdn', $effective_rights['entryLevelRights'])) { + if (in_array('modrdn', $effective_rights['entrylevelrights'])) { $rights['edit'] = "w"; $rights['password'] = "w"; } - if (in_array('read', $effective_rights['entryLevelRights'])) { + if (in_array('read', $effective_rights['entrylevelrights'])) { $rights['info'] = "r"; $rights['find'] = "r"; } |