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 /Bugzilla | |
| parent | c3ab2e94a07228c119fc0733b9fef4a32f5ee4f8 (diff) | |
| download | bugs-69cb46eaca778c78d775406ff3e92ed32fa87124.tar bugs-69cb46eaca778c78d775406ff3e92ed32fa87124.tar.gz bugs-69cb46eaca778c78d775406ff3e92ed32fa87124.tar.bz2 bugs-69cb46eaca778c78d775406ff3e92ed32fa87124.tar.xz bugs-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
Diffstat (limited to 'Bugzilla')
| -rw-r--r-- | Bugzilla/Bug.pm | 2 |
1 files changed, 2 insertions, 0 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); |
