Commit 912d68e0 authored by Hanno Schlichting's avatar Hanno Schlichting

Merge c123739 from 2.12 branch

parent e28e399e
...@@ -8,6 +8,8 @@ http://docs.zope.org/zope2/releases/. ...@@ -8,6 +8,8 @@ http://docs.zope.org/zope2/releases/.
2.13.11 (unreleased) 2.13.11 (unreleased)
-------------------- --------------------
- LP #902068: Fixed missing security declaration for `ObjectManager` class.
- Avoid conflicting signal registrations when run under mod_wsgi. - Avoid conflicting signal registrations when run under mod_wsgi.
Allows the use of `WSGIRestrictSignal Off` (LP #681853). Allows the use of `WSGIRestrictSignal Off` (LP #681853).
......
...@@ -795,7 +795,7 @@ class ObjectManager(CopyContainer, ...@@ -795,7 +795,7 @@ class ObjectManager(CopyContainer,
def keys(self): def keys(self):
return self.objectIds() return self.objectIds()
security.declareProtected(access_contents_information, 'get') security.declareProtected(access_contents_information, 'items')
def items(self): def items(self):
return self.objectItems() return self.objectItems()
......
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