summaryrefslogtreecommitdiffstats
path: root/whineatnews.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-09-15 21:26:57 +0200
committerterry%mozilla.org <>1999-09-15 21:26:57 +0200
commit20269fbbc7fe9226f2ed8a4c0470d7c84b795591 (patch)
treefd577514f74265aa1e21139cfb82b461f1590389 /whineatnews.pl
parent41a492a37c0033fa2ad1485a9b80590dfc9844c7 (diff)
downloadbugzilla-20269fbbc7fe9226f2ed8a4c0470d7c84b795591.tar.gz
bugzilla-20269fbbc7fe9226f2ed8a4c0470d7c84b795591.tar.xz
Whining mail wasn't generated correctly if usernames != email addresses.
Diffstat (limited to 'whineatnews.pl')
-rwxr-xr-xwhineatnews.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/whineatnews.pl b/whineatnews.pl
index 6be5f895e..59a794739 100755
--- a/whineatnews.pl
+++ b/whineatnews.pl
@@ -55,6 +55,7 @@ my $emailsuffix = Param('emailsuffix');
foreach my $email (sort (keys %bugs)) {
my %substs;
$substs{'email'} = $email . $emailsuffix;
+ $substs{'userid'} = $email;
my $msg = PerformSubsts($template, \%substs);
foreach my $i (@{$bugs{$email}}) {