diff options
author | bbaetz%student.usyd.edu.au <> | 2003-01-15 05:00:05 +0100 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2003-01-15 05:00:05 +0100 |
commit | 6368cfad3ea49b6220598d2e362defbc820b9c36 (patch) | |
tree | 7d8eabc6b39e880548672c71dd5286684ebffae7 /report.cgi | |
parent | f50d2365975b419d62b398af9a886da4f5bcaff4 (diff) | |
download | bugzilla-6368cfad3ea49b6220598d2e362defbc820b9c36.tar.gz bugzilla-6368cfad3ea49b6220598d2e362defbc820b9c36.tar.xz |
Bug 163290 - move DB handling code into a module
r=justdave, myk, joel, preed
a=justdave
Diffstat (limited to 'report.cgi')
-rwxr-xr-x | report.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/report.cgi b/report.cgi index f727ee466..d113e6d89 100755 --- a/report.cgi +++ b/report.cgi @@ -28,6 +28,8 @@ require "CGI.pl"; use vars qw($cgi $template $vars); +use Bugzilla; + # Go straight back to query.cgi if we are adding a boolean chart. if (grep(/^cmd-/, $cgi->param())) { my $params = $cgi->canonicalise_query("format", "ctype"); @@ -44,7 +46,7 @@ GetVersionTable(); confirm_login(); -ReconnectToShadowDatabase(); +Bugzilla->instance->switch_to_shadow_db(); my $action = $cgi->param('action') || 'menu'; |