Skip to content

Commit

Permalink
fix 80
Browse files Browse the repository at this point in the history
  • Loading branch information
wohnlice committed Apr 29, 2020
1 parent e656c7a commit b75e644
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.rst
Expand Up @@ -4,6 +4,8 @@ Products.CMFCore Changelog
2.4.7 (unreleased)
------------------

- Change the default value of uid to None on CMFCatalogAware's reindexObject method (`#80 <https://github.com/zopefoundation/Products.CMFCore/issue`_)


2.4.6 (2020-04-14)
------------------
Expand Down
2 changes: 1 addition & 1 deletion Products/CMFCore/CMFCatalogAware.py
Expand Up @@ -79,7 +79,7 @@ def unindexObject(self):
catalog.unindexObject(self)

@security.protected(ModifyPortalContent)
def reindexObject(self, idxs=[], update_metadata=1, uid=False):
def reindexObject(self, idxs=[], update_metadata=1, uid=None):
""" Reindex the object in the portal catalog.
"""
if idxs == []:
Expand Down

0 comments on commit b75e644

Please sign in to comment.