Commit 31af7fe6 authored by Andreas Jung's avatar Andreas Jung

- Collector #1053: parseIndexRequest turned empty sequence of search

       terms into unrestricted search.
parent 3543feb5
......@@ -8,6 +8,9 @@ Zope Changes
Bugs fixed
- Collector #1053: parseIndexRequest turned empty sequence of search
terms into unrestricted search.
- manage_tabs had a namespace problem with the acquisition of names from
the manage_options variable resulting to acquire "target" and "action"
from objects above in the hierachy.
......
......@@ -11,7 +11,7 @@
#
#############################################################################
__version__ = '$Id: util.py,v 1.10 2002/08/14 22:19:34 mj Exp $'
__version__ = '$Id: util.py,v 1.11 2003/09/29 12:00:17 andreasjung Exp $'
import re
......@@ -127,9 +127,6 @@ class parseIndexRequest:
if request.has_key(field):
setattr(self, op, request[field])
if not keys:
keys = None
self.keys = keys
......
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