From ae76aeb8cd3e8fc1350e73bd01f5effaaf726d28 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Fri, 14 Jan 2000 06:23:23 +0000 Subject: Send one last email notification to people when a bug gets reassigned away from them or they get removed from the CC list. --- process_bug.cgi | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'process_bug.cgi') diff --git a/process_bug.cgi b/process_bug.cgi index 36bfe71be..c1c7e63a4 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -678,6 +678,9 @@ The changes made were: if ($col eq 'assigned_to' || $col eq 'qa_contact') { $old = DBID_to_name($old) if $old != 0; $new = DBID_to_name($new) if $new != 0; + $origcclist .= ",$old"; # make sure to send mail to people + # if they are going to no longer get + # updates about this bug. } if ($col eq 'product') { RemoveVotes($id, @@ -694,7 +697,7 @@ The changes made were: print "

Changes to bug $id submitted

\n"; SendSQL("unlock tables"); - system("./processmail $id $::FORM{'who'}"); + system("./processmail", "-forcecc", $origcclist, $id, $::FORM{'who'}); print "
Back To BUG# $id
\n"; foreach my $k (keys(%dependencychanged)) { -- cgit v1.2.3-24-g4f1b