Commit 2be1e219 authored by Andreas Jung's avatar Andreas Jung

added getId() of interface for PluggableIndexes -> changed the way

to retrieve the id of an index from index.id to index.getId()
parent dc62f06a
...@@ -464,8 +464,8 @@ class Catalog(Persistent, Acquisition.Implicit, ExtensionClass.Base): ...@@ -464,8 +464,8 @@ class Catalog(Persistent, Acquisition.Implicit, ExtensionClass.Base):
# Optimization: we check if there is some work for the index. # Optimization: we check if there is some work for the index.
# #
if request.has_key(index.id) : if request.has_key(index.getId()) :
if request[index.id] != '': if request[index.getId()] != '':
r=index._apply_index(request) r=index._apply_index(request)
if r is not None: if r is not None:
......
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