diff options
author | terry%mozilla.org <> | 1999-08-14 00:10:01 +0000 |
---|---|---|
committer | terry%mozilla.org <> | 1999-08-14 00:10:01 +0000 |
commit | 324d41e5920031b73c64ea07230109d73ffd7b5a (patch) | |
tree | 4e1cfcda244b9b753af41d587b3b4d1c68177487 /whineatnews.pl | |
parent | only claim that these are the 20 most doomed if we've left people off the list (diff) | |
download | bugzilla-324d41e5920031b73c64ea07230109d73ffd7b5a.tar.gz bugzilla-324d41e5920031b73c64ea07230109d73ffd7b5a.tar.bz2 bugzilla-324d41e5920031b73c64ea07230109d73ffd7b5a.zip |
Wasn't using the 'emailsuffix' param.
Diffstat (limited to 'whineatnews.pl')
-rwxr-xr-x | whineatnews.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/whineatnews.pl b/whineatnews.pl index 1f3d19cf6..6be5f895e 100755 --- a/whineatnews.pl +++ b/whineatnews.pl @@ -50,10 +50,11 @@ while (@row = FetchSQLData()) { my $template = Param('whinemail'); my $urlbase = Param('urlbase'); +my $emailsuffix = Param('emailsuffix'); foreach my $email (sort (keys %bugs)) { my %substs; - $substs{'email'} = $email; + $substs{'email'} = $email . $emailsuffix; my $msg = PerformSubsts($template, \%substs); foreach my $i (@{$bugs{$email}}) { |