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:08:06 +0000 (08:08 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 8 Mar 2010 08:08:06 +0000 (08:08 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@16337 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/plugins/personal/posix/groupSelect/class_filterLDAPBlacklist.inc

index b78f2b2871be4d7f4043df69f3c9d79a91455465..cd150dd7ec46f8c5b21300c3b3bc788f0ecfcc43 100644 (file)
@@ -2,9 +2,9 @@
 
 class filterLDAPBlacklist {
 
-  static function query($base, $scope, $filter, $attributes, $category, $objectStorage= "")
+  static function query($parent,$base, $scope, $filter, $attributes, $category, $objectStorage= "")
   {
-    $result = filterLDAP::query($base, $scope, $filter, $attributes, $category, $objectStorage);
+    $result = filterLDAP::query($parent,$base, $scope, $filter, $attributes, $category, $objectStorage);
     return(filterLDAPBlacklist::filterByBlacklist($result));
   }