[CMF-checkins] CVS: CMF/CMFCollector/skins/collector - collector_issue_followup.py:1.2

Ken Manheimer klm@zope.com
Thu, 11 Oct 2001 19:55:15 -0400


Update of /cvs-repository/CMF/CMFCollector/skins/collector
In directory cvs.zope.org:/tmp/cvs-serv14030

Modified Files:
	collector_issue_followup.py 
Log Message:
Dispatch with addition of assignees from
collector_issue_followup_form.


=== CMF/CMFCollector/skins/collector/collector_issue_followup.py 1.1 => 1.2 ===
 ##title=Submit a new comment.
 
-context.portal_workflow.doActionFor(context,
-                                    action,
-                                    comment=comment)
-
-attachments = context.REQUEST.get('attachments', [])
-id = context.do_action(action, comment, attachments)
+context.do_action(action,
+                  comment,
+                  attachments=context.REQUEST.get('attachments', []),
+                  assignees=context.REQUEST.get('assignees', []))
 
 context.REQUEST.RESPONSE.redirect(context.absolute_url())