diff options
author | mkanat%kerio.com <> | 2005-02-17 03:11:06 +0100 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-02-17 03:11:06 +0100 |
commit | 62b2ec349b01a454420eaadd22caad929521a76e (patch) | |
tree | ee6df46d3cb0df42a21791ead8b323e0e500116c /config.cgi | |
parent | fc3aa3e7aa78106e8148b3ecbd92e65e5ad63985 (diff) | |
download | bugzilla-62b2ec349b01a454420eaadd22caad929521a76e.tar.gz bugzilla-62b2ec349b01a454420eaadd22caad929521a76e.tar.xz |
Bug 237862: New database layer for cross-database compatibility
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=myk
Diffstat (limited to 'config.cgi')
-rwxr-xr-x | config.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.cgi b/config.cgi index 2d0505db8..56751ec0e 100755 --- a/config.cgi +++ b/config.cgi @@ -83,7 +83,7 @@ $vars->{'open_status'} = \@open_status; $vars->{'closed_status'} = \@closed_status; # Generate a list of fields that can be queried. -$vars->{'field'} = [Bugzilla::DB::GetFieldDefs()]; +$vars->{'field'} = [Bugzilla->dbh->bz_get_field_defs()]; # Determine how the user would like to receive the output; # default is JavaScript. |