diff options
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"; } |