From: terry%mozilla.org <> Date: Sat, 14 Aug 1999 00:10:01 +0000 (+0000) Subject: Wasn't using the 'emailsuffix' param. X-Git-Tag: bugzilla-2.6~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=324d41e5920031b73c64ea07230109d73ffd7b5a;p=thirdparty%2Fbugzilla.git Wasn't using the 'emailsuffix' param. --- diff --git a/whineatnews.pl b/whineatnews.pl index 1f3d19cf6e..6be5f895e2 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}}) {