From d2c624c0019432c25c483a13a504349bab7f73c8 Mon Sep 17 00:00:00 2001 From: hickert Date: Fri, 26 Jan 2007 05:43:51 +0000 Subject: [PATCH] Ingnore Upper Lower case strings. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5628 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/admin/users/class_userManagement.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/admin/users/class_userManagement.inc b/plugins/admin/users/class_userManagement.inc index 55a79bc50..63a238616 100644 --- a/plugins/admin/users/class_userManagement.inc +++ b/plugins/admin/users/class_userManagement.inc @@ -732,7 +732,7 @@ class userManagement extends plugin /* Skip entries that are not located under the people ou (normaly 'ou=people,') * Else winstations will be listed too, if you use the subtree flag. */ - if(!preg_match("/".normalizePreg(get_people_ou())."/",$Entry['dn'])){ + if(!preg_match("/".normalizePreg(get_people_ou())."/i",$Entry['dn'])){ continue; }else{ -- 2.30.2