Skip to content

Commit

Permalink
Backported c109102 from 2.12 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Feb 22, 2010
1 parent 62b5578 commit dea3a25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions doc/CHANGES.txt
Expand Up @@ -8,6 +8,8 @@ Zope Changes

Bugs Fixed

- Protect ZCTextIndex's clear method against storing Acquisition wrappers.

- LP #195761: fixed ZMI XML export / import.

- MailHost should fall back to HELO when EHLO fails.
Expand Down
2 changes: 1 addition & 1 deletion lib/python/Products/ZCTextIndex/ZCTextIndex.py
Expand Up @@ -253,7 +253,7 @@ def clear(self):
del self._v_lexicon
except (AttributeError, KeyError):
pass
self.index = self._index_factory(self.getLexicon())
self.index = self._index_factory(aq_base(self.getLexicon()))

## User Interface Methods ##

Expand Down

0 comments on commit dea3a25

Please sign in to comment.