diff options
author | terry%mozilla.org <> | 1999-08-14 02:10:01 +0200 |
---|---|---|
committer | terry%mozilla.org <> | 1999-08-14 02:10:01 +0200 |
commit | 324d41e5920031b73c64ea07230109d73ffd7b5a (patch) | |
tree | 4e1cfcda244b9b753af41d587b3b4d1c68177487 | |
parent | e5ca1ec863768d3b5e620563416a436d846db461 (diff) | |
download | bugzilla-324d41e5920031b73c64ea07230109d73ffd7b5a.tar.gz bugzilla-324d41e5920031b73c64ea07230109d73ffd7b5a.tar.xz |
Wasn't using the 'emailsuffix' param.
-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}}) { |