Skip to content

Commit

Permalink
fix another bug in manage_FTPlist introduced in b4495eb#diff-f7f065aa…
Browse files Browse the repository at this point in the history
  • Loading branch information
pbauer committed May 17, 2019
1 parent 55413e6 commit cee3ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OFS/ObjectManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ def manage_FTPstat(self, REQUEST):
# check to see if we are acquiring our objectValues or not
parents = REQUEST.PARENTS
if not (len(parents) > 1
and self.objectValues() == parents.objectValues()):
and self.objectValues() == parents[1].objectValues()):
try:
if getSecurityManager().validate(
None, self, 'manage_FTPlist', self.manage_FTPlist):
Expand Down

0 comments on commit cee3ef4

Please sign in to comment.