Skip to content

Commit

Permalink
Fix bug 1756
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Dec 15, 2000
1 parent 146aab9 commit 2b48241
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ZCatalog.py
Expand Up @@ -318,7 +318,11 @@ def manage_catalogFoundItems(self, REQUEST, RESPONSE, URL2, URL1,
c_elapse = time.clock()

words = 0
path=urllib.unquote(string.split(URL2, REQUEST.script)[1])
path=string.split(URL2, REQUEST.script)
if len(path) > 1:
path=path[1]
else: path=''
path=urllib.unquote(path)

results = self.ZopeFindAndApply(REQUEST.PARENTS[1],
obj_metatypes=obj_metatypes,
Expand Down

0 comments on commit 2b48241

Please sign in to comment.