Commit 9642abb3 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 288985: cannot remove users from the CC list - Patch by Frederic Buclin…

Bug 288985: cannot remove users from the CC list - Patch by Frederic Buclin <LpSolit@gmail.com> r=mkanat a=myk
parent 6f0e3792
...@@ -363,7 +363,9 @@ sub ProcessOneBug($$) { ...@@ -363,7 +363,9 @@ sub ProcessOneBug($$) {
# You can't stop being the reporter, and mail isn't sent if you # You can't stop being the reporter, and mail isn't sent if you
# remove your vote. # remove your vote.
if ($what eq "CC") { 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") { elsif ($what eq "QAContact") {
push(@{$recipients{DBNameToIdAndCheck($old)}}, REL_QA); push(@{$recipients{DBNameToIdAndCheck($old)}}, REL_QA);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment