Code

Fix errornous evaluation of ACLs with paranthesis in OUs
authorpsc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 16 Feb 2009 17:54:50 +0000 (17:54 +0000)
committerpsc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 16 Feb 2009 17:54:50 +0000 (17:54 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@13426 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/class_userinfo.inc

index 57514cda23d42a119a3adee423729d69a87fdc40..836e139977d813a84e0a61280d2e871687ad9697 100644 (file)
@@ -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;
             }