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 /whine.pl | |
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 'whine.pl')
-rwxr-xr-x | whine.pl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,7 +33,7 @@ use Bugzilla::Config qw(:DEFAULT $datadir); use Bugzilla::Constants; use Bugzilla::Search; use Bugzilla::User; -use Bugzilla::BugMail; +use Bugzilla::Mailer; use Bugzilla::Util; # create some handles that we'll need @@ -406,7 +406,7 @@ sub mail { $template->process("whine/multipart-mime.txt.tmpl", $args, \$msg) or die($template->error()); - Bugzilla::BugMail::MessageToMTA($msg); + MessageToMTA($msg); delete $args->{'boundary'}; delete $args->{'alternatives'}; |