diff options
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. |