# HG changeset patch # User Daniel Hans # Date 1256417129 -7200 # Node ID 8a18ac7ca9099ebc28232a37bc18aff6d3827eaa # Parent f3886d1b00a58c142b2569b9390d8a7a721573c8 When a task is edited, 'modified_by' field is not cleared any more. Fix for issue 692. diff -r f3886d1b00a5 -r 8a18ac7ca909 app/soc/modules/ghop/views/models/task.py --- a/app/soc/modules/ghop/views/models/task.py Fri Oct 23 13:25:28 2009 -0700 +++ b/app/soc/modules/ghop/views/models/task.py Sat Oct 24 22:45:29 2009 +0200 @@ -509,7 +509,7 @@ if not entity: filter['scope'] = fields['scope'] else: - filter['scope'] = entity.program + filter['scope'] = entity.scope role_entity = ghop_org_admin_logic.logic.getForFields( filter, unique=True)