Bug 288985: cannot remove users from the CC list - Patch by Frederic Buclin <LpSolit@gmail.com> r=mkanat a=myk

git-svn-id: svn://10.0.0.236/trunk@171599 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
lpsolit%gmail.com
2005-04-04 21:09:17 +00:00
parent 76b3903be1
commit ffde38cdc2

View File

@@ -363,7 +363,9 @@ sub ProcessOneBug($$) {
# You can't stop being the reporter, and mail isn't sent if you
# remove your vote.
if ($what eq "CC") {
push(@{$recipients{DBNameToIdAndCheck($old)}}, REL_CC);
foreach my $cc_user (split(/[\s,]+/, $old)) {
push(@{$recipients{DBNameToIdAndCheck($cc_user)}}, REL_CC);
}
}
elsif ($what eq "QAContact") {
push(@{$recipients{DBNameToIdAndCheck($old)}}, REL_QA);