diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-08-09 02:05:13 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-08-20 23:52:52 +0200 |
commit | 96e529c4357f7f7832465b71f42994854a174cdd (patch) | |
tree | 316bff7fb27f958f310dc47be0af1ebeee1f6799 /Bugzilla/Quantum | |
parent | 8db10ddf926974bc295359b35c8b69a1033a37b5 (diff) | |
download | bugzilla-96e529c4357f7f7832465b71f42994854a174cdd.tar.gz bugzilla-96e529c4357f7f7832465b71f42994854a174cdd.tar.xz |
fix glaring error
Diffstat (limited to 'Bugzilla/Quantum')
-rw-r--r-- | Bugzilla/Quantum/SES.pm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Bugzilla/Quantum/SES.pm b/Bugzilla/Quantum/SES.pm index 47c591fb5..26df7a3eb 100644 --- a/Bugzilla/Quantum/SES.pm +++ b/Bugzilla/Quantum/SES.pm @@ -133,10 +133,7 @@ sub _process_bounce { } sub _process_complaint { - my ($self) = @_; - - # email notification to bugzilla admin - my ($notification) = @_; + my ($self, $notification) = @_; my $template = Bugzilla->template_inner(); my $json = JSON::MaybeXS->new( pretty => 1, @@ -200,4 +197,4 @@ sub ua { return $ua; } -1;
\ No newline at end of file +1; |