From bbeaa2d022480b930413131244f4bb0c0b56162c Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Mon, 23 Apr 2012 20:18:23 +0000 Subject: [PATCH] Fix bug in liaison form that prevents Secretariat users from posting statements on behalf of SDO liaison managers in some cases. - Legacy-Id: 4311 --- ietf/liaisons/formsREDESIGN.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/liaisons/formsREDESIGN.py b/ietf/liaisons/formsREDESIGN.py index 06d999edc..507c92e95 100644 --- a/ietf/liaisons/formsREDESIGN.py +++ b/ietf/liaisons/formsREDESIGN.py @@ -425,7 +425,7 @@ class OutgoingLiaisonForm(LiaisonForm): # If the from entity is one in wich the user has full privileges the to entity could be anyone if from_code in [i[0] for i in all_entities]: return to_code - sdo_codes = ['sdo_%s' % i.pk for i in liaison_manager_sdos(self.person)] + sdo_codes = ['sdo_%s' % i.pk for i in liaison_manager_sdos(person)] if to_code in sdo_codes: return to_code entity = self.get_to_entity()