summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2005-01-09 03:33:48 +0100
committerjocuri%softhome.net <>2005-01-09 03:33:48 +0100
commit0a99f5218fc9e86055f2cc04d680614d093c68da (patch)
tree9ce8f8fd08c5c2d9bb8a6e9db0fc141923b43766 /Bugzilla
parent78d77d8829ecc11ec6102ba7fec5a028f1af3ad5 (diff)
downloadbugzilla-0a99f5218fc9e86055f2cc04d680614d093c68da.tar.gz
bugzilla-0a99f5218fc9e86055f2cc04d680614d093c68da.tar.xz
Patch for bug 277389: Modify flag notification code so it doesn't append emailsuffix to CC list's addresses; patch by Marc Schumann <wurblzap@gmail.com>, r=wurblzap, a=justdave.
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Flag.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm
index 8fa1e9457..57ea55982 100644
--- a/Bugzilla/Flag.pm
+++ b/Bugzilla/Flag.pm
@@ -622,7 +622,7 @@ sub notify {
next if $flag->{'target'}->{'attachment'}->{'isprivate'}
&& Param("insidergroup")
&& !$ccuser->in_group(Param("insidergroup"));
- push(@new_cc_list, $cc.Param('emailsuffix'));
+ push(@new_cc_list, $cc);
}
$flag->{'type'}->{'cc_list'} = join(", ", @new_cc_list);
}