From: hickert Date: Thu, 29 Jul 2010 12:14:32 +0000 (+0000) Subject: Updated post handling X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6517e0b732d757d4ad2c340b80c6d0bd539975ab;p=gosa.git Updated post handling git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19226 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/plugins/admin/ogroups/objectSelect/class_filterLDAPDepartmentBlacklist.inc b/gosa-core/plugins/admin/ogroups/objectSelect/class_filterLDAPDepartmentBlacklist.inc index ff6c467ea..0e222d052 100644 --- a/gosa-core/plugins/admin/ogroups/objectSelect/class_filterLDAPDepartmentBlacklist.inc +++ b/gosa-core/plugins/admin/ogroups/objectSelect/class_filterLDAPDepartmentBlacklist.inc @@ -2,16 +2,16 @@ class filterLDAPDepartmentBlacklist extends filterLDAPBlacklist{ - static function query($base, $scope, $filter, $attributes, $category, $objectStorage= "") - { - $entries = filterLDAPBlacklist::query($base, $scope, $filter, $attributes, $category,array()); - foreach($entries as $key => $entry){ - $entries[$key]['cn'] = $entry['ou']; - $entries[$key][ $entries[$key]['count'] ]= 'cn'; - $entries[$key]['count'] ++; + static function query($base, $scope, $filter, $attributes, $category, $objectStorage= "") + { + $entries = filterLDAPBlacklist::query($base, $scope, $filter, $attributes, $category,array()); + foreach($entries as $key => $entry){ + $entries[$key]['cn'] = $entry['ou']; + $entries[$key][ $entries[$key]['count'] ]= 'cn'; + $entries[$key]['count'] ++; + } + return(filterLDAPBlacklist::filterByBlacklist($entries)); } - return(filterLDAPBlacklist::filterByBlacklist($entries)); - } } ?>