Bug 382037: Default CC is ignored when a bug is created via the webservice

Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit


git-svn-id: svn://10.0.0.236/trunk@227043 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org 2007-05-25 23:42:53 +00:00
parent 869c28e479
commit 77d20aa3a6

View File

@ -623,7 +623,7 @@ sub _check_bug_status {
sub _check_cc {
my ($invocant, $component, $ccs) = @_;
return [] unless $ccs;
return [map {$_->id} @{$component->initial_cc}] unless $ccs;
my %cc_ids;
foreach my $person (@$ccs) {