diff options
author | lpsolit%gmail.com <> | 2006-06-02 17:50:15 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-06-02 17:50:15 +0000 |
commit | 2b9f5bf80911872ca809061bd46d8fc7f64c2929 (patch) | |
tree | 29443975af530533739b1d7c442e8ebed5254430 /editproducts.cgi | |
parent | Bug 329377: Bugzilla::Object base class for objects (diff) | |
download | bugzilla-2b9f5bf80911872ca809061bd46d8fc7f64c2929.tar.gz bugzilla-2b9f5bf80911872ca809061bd46d8fc7f64c2929.tar.bz2 bugzilla-2b9f5bf80911872ca809061bd46d8fc7f64c2929.zip |
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-x | editproducts.cgi | 6 |
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); |