Commit 4e87038a authored by Jérome Perrin's avatar Jérome Perrin

core: fix Folder_cut to check relations of sub-objects

This `o` was an unused variable. The initial intention was probably
this.
parent 0d1411c5
......@@ -4,8 +4,8 @@ Base_translateString = portal.Base_translateString
def Object_hasRelation(obj):
# Check if there is some related objets.
result = 0
for o in obj.getIndexableChildValueList():
for related in obj.portal_categories.getRelatedValueList(obj):
for sub_obj in obj.getIndexableChildValueList():
for related in obj.portal_categories.getRelatedValueList(sub_obj):
if related.getRelativeUrl().startswith(obj.getRelativeUrl()):
continue
elif related.getRelativeUrl().startswith('portal_simulation') :
......
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