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

This commit is contained in:
lpsolit%gmail.com 2005-04-04 21:09:17 +00:00
Родитель 4b8e4f83ff
Коммит 14df3391bc
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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);