From 4506fc82d63bd61f04139187d59b6a2341c7ecf8 Mon Sep 17 00:00:00 2001 From: psc Date: Mon, 16 Feb 2009 17:54:50 +0000 Subject: [PATCH] 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 --- gosa-core/include/class_userinfo.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2