From: hickert Date: Thu, 15 Sep 2011 07:55:10 +0000 (+0000) Subject: Backport from trunk X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=343eef398c6012ef6a135d5a9da95131fccb8f93;p=gosa.git Backport from trunk -Fixed user detection when loading acls git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.7@20987 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_userinfo.inc b/gosa-core/include/class_userinfo.inc index c7f0d1bf7..d16d86580 100644 --- a/gosa-core/include/class_userinfo.inc +++ b/gosa-core/include/class_userinfo.inc @@ -171,7 +171,7 @@ class userinfo } /* User inside the members? */ - if (preg_replace('/^U:/', '', $grp) == $this->dn){ + if (mb_strtoupper(preg_replace('/^U:/', '', $grp)) == mb_strtoupper($this->dn)){ $interresting= TRUE; }