Index: openacs-4/packages/imsld/tcl/imsld-condition-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/imsld/tcl/imsld-condition-procs.tcl,v diff -u -r1.20 -r1.21 --- openacs-4/packages/imsld/tcl/imsld-condition-procs.tcl 24 Oct 2006 10:09:51 -0000 1.20 +++ openacs-4/packages/imsld/tcl/imsld-condition-procs.tcl 3 Nov 2006 14:39:02 -0000 1.21 @@ -742,6 +742,7 @@ {notification} { set activity_id "" set subjectValue "" + set notified_users_list [list] set subjectNode [$executeNode selectNodes {*[local-name()='subject']}] if { [llength $subjectNode] } { set subjectValue [$subjectNode text] @@ -802,14 +803,15 @@ and run.run_id = :run_id } - imsld::do_notification -imsld_id $imsld_id \ - -run_id $run_id \ - -subject $subjectValue \ - -activity_id $activity_id \ - -username $username \ - -email_address $email_address \ - -role_id $role_id \ - -user_id $user_id + set notified_users_list [imsld::do_notification -imsld_id $imsld_id \ + -run_id $run_id \ + -subject $subjectValue \ + -activity_id $activity_id \ + -username $username \ + -email_address $email_address \ + -role_id $role_id \ + -user_id $user_id \ + -notified_users_list $notified_users_list] } } }