Skip to content

Commit bbeaa2d

Browse files
committed
Fix bug in liaison form that prevents Secretariat users from posting
statements on behalf of SDO liaison managers in some cases. - Legacy-Id: 4311
1 parent 9b4415f commit bbeaa2d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/liaisons/formsREDESIGN.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ def clean_organization(self):
425425
# If the from entity is one in wich the user has full privileges the to entity could be anyone
426426
if from_code in [i[0] for i in all_entities]:
427427
return to_code
428-
sdo_codes = ['sdo_%s' % i.pk for i in liaison_manager_sdos(self.person)]
428+
sdo_codes = ['sdo_%s' % i.pk for i in liaison_manager_sdos(person)]
429429
if to_code in sdo_codes:
430430
return to_code
431431
entity = self.get_to_entity()

0 commit comments

Comments
 (0)