From 85e0d6c95959b6086f5f5a90c6d3d50f294c043f Mon Sep 17 00:00:00 2001 From: Simon Green Date: Wed, 7 May 2014 09:07:49 +1000 Subject: Bug 1005780 - When cloning a bug, also add the assignee and qa contact to the CC: list of the new bug r=glob, a=glob --- enter_bug.cgi | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'enter_bug.cgi') diff --git a/enter_bug.cgi b/enter_bug.cgi index 93997e665..baf5d7833 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -216,10 +216,14 @@ if ($cloned_bug_id) { } else { $vars->{'cc'} = formvalue('cc'); } - - if ($cloned_bug->reporter->id != $user->id - && none { $_ eq $cloned_bug->reporter->login } @{$cloned_bug->cc}) { - $vars->{'cc'} = join (", ", $cloned_bug->reporter->login, $vars->{'cc'}); + + foreach my $role (qw(reporter assigned_to qa_contact)) { + if (defined($cloned_bug->$role) + && $cloned_bug->$role->id != $user->id + && none { $_ eq $cloned_bug->$role->login } @{$cloned_bug->cc}) + { + $vars->{'cc'} = join (", ", $cloned_bug->$role->login, $vars->{'cc'}); + } } foreach my $field (@enter_bug_fields) { -- cgit v1.2.3-24-g4f1b