summaryrefslogtreecommitdiffstats
path: root/editproducts.cgi
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-06-02 19:50:15 +0200
committerlpsolit%gmail.com <>2006-06-02 19:50:15 +0200
commit2b9f5bf80911872ca809061bd46d8fc7f64c2929 (patch)
tree29443975af530533739b1d7c442e8ebed5254430 /editproducts.cgi
parent24a02ebf00c318c3406fc4c4f38a8f93480b0548 (diff)
downloadbugzilla-2b9f5bf80911872ca809061bd46d8fc7f64c2929.tar.gz
bugzilla-2b9f5bf80911872ca809061bd46d8fc7f64c2929.tar.xz
Bug 339862: Move Bugzilla::BugMail::MessageToMTA() in a separate module - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=justdave
Diffstat (limited to 'editproducts.cgi')
-rwxr-xr-xeditproducts.cgi6
1 files changed, 3 insertions, 3 deletions
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);