Code

Fixed acl handling in lists.n -Acls were not checked correctl. If we had permissions...
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 8 Mar 2010 08:07:53 +0000 (08:07 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 8 Mar 2010 08:07:53 +0000 (08:07 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@16332 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/plugins/admin/ogroups/objectSelect/class_filterLDAPDepartmentBlacklist.inc

index ff6c467eadfd4cc949910c721cd9ce5340e57163..3fac87377b805074c5cafa993d8d9e07a38cee54 100644 (file)
@@ -2,9 +2,9 @@
 
 class filterLDAPDepartmentBlacklist  extends filterLDAPBlacklist{
 
-  static function query($base, $scope, $filter, $attributes, $category, $objectStorage= "")
+  static function query($parent,$base, $scope, $filter, $attributes, $category, $objectStorage= "")
   {
-    $entries = filterLDAPBlacklist::query($base, $scope, $filter, $attributes, $category,array());
+    $entries = filterLDAPBlacklist::query($parent,$base, $scope, $filter, $attributes, $category,array());
     foreach($entries as $key => $entry){
       $entries[$key]['cn'] = $entry['ou'];
       $entries[$key][ $entries[$key]['count'] ]= 'cn';