Commit 74c9ffe9 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix buildEntireQuery definition: REQUEST parameter was removed.

Also fix a typo (missing colon at end of method definition).


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30034 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a2a53019
......@@ -63,9 +63,8 @@ class ISearchKeyCatalog(Interface):
It must be a valid ComplexQuery logical operator ('and', 'or').
"""
def buildEntireQuery(kw, query_table='catalog', REQUEST=None,
ignore_empty_string=1, limit=None,
extra_column_list=None)
def buildEntireQuery(kw, query_table='catalog', ignore_empty_string=1,
limit=None, extra_column_list=None):
"""
Construct and return an instance of EntireQuery class from given
parameters by calling buildQuery.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment