summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e260b6f)
raw | patch | inline | side by side (parent: e260b6f)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 21 Apr 2010 13:43:28 +0000 (13:43 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 21 Apr 2010 13:43:28 +0000 (13:43 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17777 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_acl.inc | patch | blob | history |
index fc180de9645640b7845bffe5d1076742a730e631..71db1500bee255d914cdc83afdcac117706c565d 100644 (file)
function convertForListing($entry)
{
$member = implode($entry['members'],", ");
- $acl = implode(array_keys($entry['acl']),", ");
- $type = implode(array_keys($entry['acl']),", ");
+ if(isset($entry['acl']) && is_array($entry['acl'])){
+ $acl = implode(array_keys($entry['acl']),", ");
+ }else{
+ $acl="";
+ }
return(array('data' => array($member, $acl, $this->aclTypes[$entry['type']])));
}