diff options
author | David Lawrence <dkl@mozilla.com> | 2014-09-12 22:53:39 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2014-09-12 22:53:39 +0200 |
commit | d898380623e141b87793657887354d0a381c0867 (patch) | |
tree | bd6572b194ba2c147e5c6f1088aabcb0a4a5f9b8 /extensions | |
parent | 747f1f1cacb06bc19cedd376371e4b3109b2983a (diff) | |
download | bugzilla-d898380623e141b87793657887354d0a381c0867.tar.gz bugzilla-d898380623e141b87793657887354d0a381c0867.tar.xz |
Bug 1066777: The kick-off form isn't creating dependent bugs
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 = { |