From: psc Date: Mon, 16 Feb 2009 17:54:50 +0000 (+0000) Subject: Fix errornous evaluation of ACLs with paranthesis in OUs X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4506fc82d63bd61f04139187d59b6a2341c7ecf8;p=gosa.git Fix errornous evaluation of ACLs with paranthesis in OUs git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@13426 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_userinfo.inc b/gosa-core/include/class_userinfo.inc index 57514cda2..836e13997 100644 --- a/gosa-core/include/class_userinfo.inc +++ b/gosa-core/include/class_userinfo.inc @@ -157,7 +157,7 @@ class userinfo /* Inspect members... */ foreach ($type['members'] as $grp => $grpdsc){ /* Some group inside the members that is relevant for us? */ - if (in_array_ics(preg_replace('/^G:/', '', $grp), $this->groups)){ + if (in_array_ics(@LDAP::convert(preg_replace('/^G:/', '', $grp)), $this->groups)){ $interresting= TRUE; }