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
This commit is contained in:
mkanat%bugzilla.org 2007-05-25 23:42:53 +00:00
Родитель 82779ac098
Коммит 54b62aa596
1 изменённых файлов: 1 добавлений и 1 удалений

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

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