diff options
author | jocuri%softhome.net <> | 2004-12-09 18:27:10 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-12-09 18:27:10 +0100 |
commit | f62da216845391cb81e3d90eb568d69682f99967 (patch) | |
tree | 016024e395b209c485ef3c82edbeb322a15ce452 | |
parent | 1aa21d6c316162bb1a5568cf7f3639aab2ff5ea3 (diff) | |
download | bugzilla-f62da216845391cb81e3d90eb568d69682f99967.tar.gz bugzilla-f62da216845391cb81e3d90eb568d69682f99967.tar.xz |
Patch for bug 258709: Make expansion of voteremovedmail honour emailsuffix; patch by Marc Schumann <wurblzap@gmail.com>, r=vladd, a=justdave.
-rw-r--r-- | globals.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/globals.pl b/globals.pl index d1e751bb0..677047fe2 100644 --- a/globals.pl +++ b/globals.pl @@ -1415,7 +1415,7 @@ sub RemoveVotes { if (open(SENDMAIL, "|/usr/lib/sendmail $sendmailparm -t -i")) { my %substs; - $substs{"to"} = $name; + $substs{"to"} = $name . Param('emailsuffix'); $substs{"bugid"} = $id; $substs{"reason"} = $reason; |