From 9e865838666f08c5505c1028a346f871559dbd90 Mon Sep 17 00:00:00 2001 From: "travis%sedsystems.ca" <> Date: Wed, 2 Feb 2005 00:26:25 +0000 Subject: Bug 279748 : Move GetFieldDefs out of globals.pl (to Bugzilla::DB) Patch by Max Kanat-Alexander r=vladd a=justdave --- config.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'config.cgi') 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. -- cgit v1.2.3-24-g4f1b