Commit 7de3ef98 authored by Sebastien Robin's avatar Sebastien Robin

give a default limit to z_searchResults


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3615 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c9f33c99
......@@ -315,6 +315,10 @@ class CatalogTool (UniqueObject, ZCatalog, CMFCoreCatalogTool, ActiveObject):
kw[ 'effective' ] = { 'query' : now, 'range' : 'max' }
kw[ 'expires' ] = { 'query' : now, 'range' : 'min' }
if not kw.has_key('limit'):
kw['limit'] = '1000'
#LOG("search allowedRolesAndUsers",0,str(kw[ 'allowedRolesAndUsers' ]))
return apply(ZCatalog.searchResults, (self, REQUEST), kw)
......
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