From 5060fdfade63f299bf3ad15c16a1aff06135b80f Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Tue, 23 Nov 2010 09:02:54 -0500 Subject: Change signature of LDAPSearch.pre_callback. Add the opportunity to change base DN and scope in the callback. --- ipalib/plugins/group.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/plugins/group.py') diff --git a/ipalib/plugins/group.py b/ipalib/plugins/group.py index 5ecc72ae8..5db3c67ec 100644 --- a/ipalib/plugins/group.py +++ b/ipalib/plugins/group.py @@ -223,7 +223,7 @@ class group_find(LDAPSearch): ), ) - def pre_callback(self, ldap, filter, attrs_list, base_dn, *args, **options): + def pre_callback(self, ldap, filter, attrs_list, base_dn, scope, *args, **options): # if looking for private groups, we need to create a new search filter, # because private groups have different object classes if options['private']: @@ -243,7 +243,7 @@ class group_find(LDAPSearch): cflt = ldap.make_filter(search_kw, exact=False) filter = ldap.combine_filters((oflt, cflt), rules=ldap.MATCH_ALL) - return filter + return (filter, base_dn, scope) api.register(group_find) -- cgit