diff options
author | terry%mozilla.org <> | 1999-09-15 19:26:57 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 1999-09-15 19:26:57 +0000 |
commit | 20269fbbc7fe9226f2ed8a4c0470d7c84b795591 (patch) | |
tree | fd577514f74265aa1e21139cfb82b461f1590389 /whineatnews.pl | |
parent | add milestone and bug owner to each bug, where appropriate. (repleaces chofma... (diff) | |
download | bugzilla-20269fbbc7fe9226f2ed8a4c0470d7c84b795591.tar.gz bugzilla-20269fbbc7fe9226f2ed8a4c0470d7c84b795591.tar.bz2 bugzilla-20269fbbc7fe9226f2ed8a4c0470d7c84b795591.zip |
Whining mail wasn't generated correctly if usernames != email addresses.
Diffstat (limited to 'whineatnews.pl')
-rwxr-xr-x | whineatnews.pl | 1 |
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}}) { |