diff options
author | travis%sedsystems.ca <> | 2005-02-02 01:26:25 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-02-02 01:26:25 +0100 |
commit | 9e865838666f08c5505c1028a346f871559dbd90 (patch) | |
tree | cfb1cea250e120dc6a6ae9e8104a6eb0c67da149 /query.cgi | |
parent | b21f214cf515f005382183beb72d70e58e0a87e5 (diff) | |
download | bugzilla-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 'query.cgi')
-rwxr-xr-x | query.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -351,7 +351,7 @@ $vars->{'bug_severity'} = \@::legal_severity; # Boolean charts my @fields; push(@fields, { name => "noop", description => "---" }); -push(@fields, GetFieldDefs()); +push(@fields, Bugzilla::DB::GetFieldDefs()); $vars->{'fields'} = \@fields; # Creating new charts - if the cmd-add value is there, we define the field |