From 2b9f5bf80911872ca809061bd46d8fc7f64c2929 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Fri, 2 Jun 2006 17:50:15 +0000 Subject: Bug 339862: Move Bugzilla::BugMail::MessageToMTA() in a separate module - Patch by Frédéric Buclin r=mkanat a=justdave MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- process_bug.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'process_bug.cgi') 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) { -- cgit v1.2.3-24-g4f1b