Commit 324d41e5 authored by terry%mozilla.org's avatar terry%mozilla.org

Wasn't using the 'emailsuffix' param.

parent e5ca1ec8
...@@ -50,10 +50,11 @@ while (@row = FetchSQLData()) { ...@@ -50,10 +50,11 @@ while (@row = FetchSQLData()) {
my $template = Param('whinemail'); my $template = Param('whinemail');
my $urlbase = Param('urlbase'); my $urlbase = Param('urlbase');
my $emailsuffix = Param('emailsuffix');
foreach my $email (sort (keys %bugs)) { foreach my $email (sort (keys %bugs)) {
my %substs; my %substs;
$substs{'email'} = $email; $substs{'email'} = $email . $emailsuffix;
my $msg = PerformSubsts($template, \%substs); my $msg = PerformSubsts($template, \%substs);
foreach my $i (@{$bugs{$email}}) { foreach my $i (@{$bugs{$email}}) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment