summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Flag.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm
index 3b2ae36c4..aca271261 100644
--- a/Bugzilla/Flag.pm
+++ b/Bugzilla/Flag.pm
@@ -596,11 +596,13 @@ sub notify {
next if $flag->{'target'}->{'attachment'}->{'isprivate'}
&& Param("insidergroup")
&& !$ccuser->in_group(Param("insidergroup"));
- push(@new_cc_list, $cc);
+ push(@new_cc_list, $cc.Param('emailsuffix'));
}
$flag->{'type'}->{'cc_list'} = join(", ", @new_cc_list);
}
+ $flag->{'requestee'}->{'email'} .= Param('emailsuffix');
+ $flag->{'setter'}->{'email'} .= Param('emailsuffix');
$::vars->{'flag'} = $flag;
my $message;