diff options
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/MozProjectReview/Extension.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/MozProjectReview/Extension.pm b/extensions/MozProjectReview/Extension.pm index a465b30f6..4f132af21 100644 --- a/extensions/MozProjectReview/Extension.pm +++ b/extensions/MozProjectReview/Extension.pm @@ -250,7 +250,7 @@ sub _file_child_bug { || ThrowTemplateError(Bugzilla->template->error()); $bug_data->{'comment'} = $comment; if (exists $auto_cc{$template_suffix}) { - $bug_data->{'cc'} = { add => $auto_cc{$template_suffix} }; + $bug_data->{'cc'} = $auto_cc{$template_suffix}; } if ($new_bug = Bugzilla::Bug->create($bug_data)) { my $set_all = { |