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 --- editproducts.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'editproducts.cgi') diff --git a/editproducts.cgi b/editproducts.cgi index 942375688..8fc074ef2 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -39,7 +39,7 @@ require "globals.pl"; use Bugzilla::Bug; use Bugzilla::Series; use Bugzilla::Config qw(:DEFAULT $datadir); -use Bugzilla::BugMail; +use Bugzilla::Mailer; use Bugzilla::Product; use Bugzilla::Classification; use Bugzilla::Milestone; @@ -905,7 +905,7 @@ if ($action eq 'update') { "has changed;\nyou had too many votes " . "for a single bug."); foreach my $msg (@$msgs) { - Bugzilla::BugMail::MessageToMTA($msg); + MessageToMTA($msg); } my $name = DBID_to_name($who); @@ -958,7 +958,7 @@ if ($action eq 'update') { "too many\ntotal votes, so all " . "votes have been removed."); foreach my $msg (@$msgs) { - Bugzilla::BugMail::MessageToMTA($msg); + MessageToMTA($msg); } my $name = DBID_to_name($who); -- cgit v1.2.3-24-g4f1b