diff options
author | Tiago Mello <timello@gmail.com> | 2011-08-16 19:04:23 -0300 |
---|---|---|
committer | Tiago Mello <timello@gmail.com> | 2011-08-16 19:04:23 -0300 |
commit | 69cb46eaca778c78d775406ff3e92ed32fa87124 (patch) | |
tree | 89fa2c4d342461a4808f0e6042882ed106d1047f | |
parent | Bug 679449: Add a link to duplicates.cgi from report.cgi (diff) | |
download | bugzilla-69cb46eaca778c78d775406ff3e92ed32fa87124.tar.gz bugzilla-69cb46eaca778c78d775406ff3e92ed32fa87124.tar.bz2 bugzilla-69cb46eaca778c78d775406ff3e92ed32fa87124.zip |
Bug 672947: Add 'require Bugzilla::BugMail' in Bugzilla::Bug->_send_bugmail
and remove unnecessary module imports in process_bug.cgi.
r/a=LpSolit
-rw-r--r-- | Bugzilla/Bug.pm | 2 | ||||
-rwxr-xr-x | process_bug.cgi | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 8b322031b..73648f233 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -1222,6 +1222,8 @@ sub send_changes { sub _send_bugmail { my ($params, $vars) = @_; + require Bugzilla::BugMail; + my $results = Bugzilla::BugMail::Send($params->{'id'}, $params->{'forced'}, $params); diff --git a/process_bug.cgi b/process_bug.cgi index acb359f63..382ee8b59 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -48,8 +48,6 @@ use lib qw(. lib); use Bugzilla; use Bugzilla::Constants; use Bugzilla::Bug; -use Bugzilla::BugMail; -use Bugzilla::Mailer; use Bugzilla::User; use Bugzilla::Util; use Bugzilla::Error; |