summaryrefslogtreecommitdiffstats
path: root/config.cgi
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-02-02 01:26:25 +0100
committertravis%sedsystems.ca <>2005-02-02 01:26:25 +0100
commit9e865838666f08c5505c1028a346f871559dbd90 (patch)
treecfb1cea250e120dc6a6ae9e8104a6eb0c67da149 /config.cgi
parentb21f214cf515f005382183beb72d70e58e0a87e5 (diff)
downloadbugzilla-9e865838666f08c5505c1028a346f871559dbd90.tar.gz
bugzilla-9e865838666f08c5505c1028a346f871559dbd90.tar.xz
Bug 279748 : Move GetFieldDefs out of globals.pl (to Bugzilla::DB)
Patch by Max Kanat-Alexander <mkanat@kerio.com> r=vladd a=justdave
Diffstat (limited to 'config.cgi')
-rwxr-xr-xconfig.cgi3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.cgi b/config.cgi
index a2c22d001..2d0505db8 100755
--- a/config.cgi
+++ b/config.cgi
@@ -32,6 +32,7 @@ use strict;
# Include the Bugzilla CGI and general utility library.
use lib qw(.);
require "CGI.pl";
+use Bugzilla::DB;
# Retrieve this installation's configuration.
GetVersionTable();
@@ -82,7 +83,7 @@ $vars->{'open_status'} = \@open_status;
$vars->{'closed_status'} = \@closed_status;
# Generate a list of fields that can be queried.
-$vars->{'field'} = [GetFieldDefs()];
+$vars->{'field'} = [Bugzilla::DB::GetFieldDefs()];
# Determine how the user would like to receive the output;
# default is JavaScript.