diff options
author | Rob Crittenden <rcritten@redhat.com> | 2007-12-11 15:06:01 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2007-12-11 15:06:01 -0500 |
commit | 10ac6c3c6107cd4deaae922bb681588a0ff410a2 (patch) | |
tree | 96bd596aeff8e69f8dbc721a760441a78a912584 /ipa-server/xmlrpc-server | |
parent | 5215b21ea404f2370bfdd4a2e452577e065a718c (diff) | |
download | freeipa-10ac6c3c6107cd4deaae922bb681588a0ff410a2.tar.gz freeipa-10ac6c3c6107cd4deaae922bb681588a0ff410a2.tar.xz freeipa-10ac6c3c6107cd4deaae922bb681588a0ff410a2.zip |
Enable searching for multiple things at once
Diffstat (limited to 'ipa-server/xmlrpc-server')
-rw-r--r-- | ipa-server/xmlrpc-server/funcs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipa-server/xmlrpc-server/funcs.py b/ipa-server/xmlrpc-server/funcs.py index 4943da24d..528b138ba 100644 --- a/ipa-server/xmlrpc-server/funcs.py +++ b/ipa-server/xmlrpc-server/funcs.py @@ -316,7 +316,7 @@ class IPAServer: # construct the giant match for all words exact_match_filter = "(&" - partial_match_filter = "(&" + partial_match_filter = "(|" for word in criteria_words: exact_match_filter += gen_search_pattern(word) partial_match_filter += gen_search_pattern("*%s*" % word) |