Commit 03c6c87e authored by Casey Duncan's avatar Casey Duncan

Collector #458: Fixed broken reindex_all method of CatalogAwareness classes

parent ca075f5d
......@@ -5,6 +5,8 @@ Zope Changes
file HISTORY.txt.
Bugs Fixed
- Collector #458: Fixed broken reindex_all in CatalogAwareness classes.
- The default "start" script now causes the event log to be sent to
standard output unless the "EVENT_LOG_FILE" or "STUPID_LOG_FILE"
......@@ -13,7 +15,7 @@ Zope Changes
- The much-hated name "STUPID_LOG_FILE" now has a preferred
alias: "EVENT_LOG_FILE".
- Collector 454: The "default" session_data transient object
- Collector #454: The "default" session_data transient object
container was not created if an object named "session_data"
existed in the root.
......
......@@ -133,7 +133,7 @@ class CatalogAware:
if hasattr(aq_base(obj), 'objectValues'):
sub=obj.objectValues()
for item in obj.objectValues():
reindex_all(self, item)
self.reindex_all(self, item)
return 'done!'
......
......@@ -118,7 +118,7 @@ class CatalogAware:
if hasattr(aq_base(obj), 'objectValues'):
sub=obj.objectValues()
for item in obj.objectValues():
reindex_all(self, item)
self.reindex_all(self, item)
return 'done!'
class CatalogPathAware(CatalogAware):
......
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