Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

undo icontentish interface #3836

Merged
merged 10 commits into from
Oct 24, 2023
5 changes: 2 additions & 3 deletions Products/CMFPlone/Portal.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,7 @@ def isEffective(self, date):
return 1


# Remove the IContentish interface so we don't listen to events that won't
# apply to the site root, ie handleUidAnnotationEvent
classImplementsOnly(PloneSite, implementedBy(PloneSite) - IContentish)
# Add the IContentish interface back to the PloneSite class
classImplementsOnly(PloneSite, implementedBy(PloneSite) + IContentish)

InitializeClass(PloneSite)
1 change: 1 addition & 0 deletions news/3833.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
undo IContentish interface.@Akshat2Jain