diff options
author | travis%sedsystems.ca <> | 2005-02-02 00:26:25 +0000 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-02-02 00:26:25 +0000 |
commit | 9e865838666f08c5505c1028a346f871559dbd90 (patch) | |
tree | cfb1cea250e120dc6a6ae9e8104a6eb0c67da149 /config.cgi | |
parent | Fixing burning tinderbox created by checkin of Bug 280124 (diff) | |
download | bugzilla-9e865838666f08c5505c1028a346f871559dbd90.tar.gz bugzilla-9e865838666f08c5505c1028a346f871559dbd90.tar.bz2 bugzilla-9e865838666f08c5505c1028a346f871559dbd90.zip |
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-x | config.cgi | 3 |
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. |