Commit b46ba7d9 authored by Hanno Schlichting's avatar Hanno Schlichting

Backported c109102 from 2.12 branch

parent 082807aa
...@@ -8,6 +8,8 @@ Zope Changes ...@@ -8,6 +8,8 @@ Zope Changes
Bugs fixed Bugs fixed
- Protect ZCTextIndex's clear method against storing Acquisition wrappers.
- LP #195761: fixed ZMI XML export / import and restored it to the UI. - LP #195761: fixed ZMI XML export / import and restored it to the UI.
Zope 2.10.11 (2010/01/12) Zope 2.10.11 (2010/01/12)
......
...@@ -253,7 +253,7 @@ class ZCTextIndex(Persistent, Acquisition.Implicit, SimpleItem): ...@@ -253,7 +253,7 @@ class ZCTextIndex(Persistent, Acquisition.Implicit, SimpleItem):
del self._v_lexicon del self._v_lexicon
except (AttributeError, KeyError): except (AttributeError, KeyError):
pass pass
self.index = self._index_factory(self.getLexicon()) self.index = self._index_factory(aq_base(self.getLexicon()))
## User Interface Methods ## ## User Interface Methods ##
......
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