From: cajus Date: Wed, 26 Jul 2006 13:37:26 +0000 (+0000) Subject: Fixed passing of acl's X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=972e6ba8a258637d0fea0a90b691c3373e3173a8;p=gosa.git Fixed passing of acl's git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4319 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_userinfo.inc b/include/class_userinfo.inc index 20c48209b..c077dc4c5 100644 --- a/include/class_userinfo.inc +++ b/include/class_userinfo.inc @@ -197,13 +197,13 @@ class userinfo /* Per object ACL? */ if (isset($subacl['acl'][$object][0])){ - $acl= $this->mergeACL($acl, $subacl['type'], preg_replace('/[cdm]/', '', $subacl['acl'][$object][0])); + $acl= $this->mergeACL($acl, $subacl['type'], $subacl['acl'][$object][0]); continue; } /* Global ACL? */ if (isset($subacl['acl']['all'])){ - $acl= $this->mergeACL($acl, $subacl['type'], preg_replace('/[cdm]/', '', $subacl['acl']['all'][0])); + $acl= $this->mergeACL($acl, $subacl['type'], $subacl['acl']['all'][0]); continue; }