diff options
author | lpsolit%gmail.com <> | 2006-06-02 19:50:15 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-06-02 19:50:15 +0200 |
commit | 2b9f5bf80911872ca809061bd46d8fc7f64c2929 (patch) | |
tree | 29443975af530533739b1d7c442e8ebed5254430 /process_bug.cgi | |
parent | 24a02ebf00c318c3406fc4c4f38a8f93480b0548 (diff) | |
download | bugzilla-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 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
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) { |