diff options
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 7c52254ee..9773dce6d 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -52,7 +52,7 @@ require "globals.pl"; use Bugzilla; use Bugzilla::Constants; use Bugzilla::Bug; -use Bugzilla::BugMail; +use Bugzilla::Mailer; use Bugzilla::User; use Bugzilla::Util; use Bugzilla::Field; @@ -743,7 +743,7 @@ if ($action eq Param('move-button-text')) { || ThrowTemplateError($template->error()); $msg .= "\n"; - Bugzilla::BugMail::MessageToMTA($msg); + MessageToMTA($msg); # End the response page. $template->process("bug/navigate.html.tmpl", $vars) @@ -2137,7 +2137,7 @@ foreach my $id (@idlist) { # Now is a good time to send email to voters. foreach my $msg (@$msgs) { - Bugzilla::BugMail::MessageToMTA($msg); + MessageToMTA($msg); } if ($duplicate) { |