diff options
author | Tiago Mello <timello@gmail.com> | 2010-08-24 17:25:49 -0300 |
---|---|---|
committer | Tiago Mello <timello@gmail.com> | 2010-08-24 17:25:49 -0300 |
commit | 85e75aba6a7131da9d63b1f628a27e986bb428c5 (patch) | |
tree | 62ea9dab6305ba21a67b1904523435365b53aae5 /query.cgi | |
parent | Bug 589860: Remove sidebar.cgi, because remote XUL support is going away in G... (diff) | |
download | bugzilla-85e75aba6a7131da9d63b1f628a27e986bb428c5.tar.gz bugzilla-85e75aba6a7131da9d63b1f628a27e986bb428c5.tar.bz2 bugzilla-85e75aba6a7131da9d63b1f628a27e986bb428c5.zip |
Bug 586871: Convert all Bugzilla->get_fields calls to Bugzilla->fields
r/a=mkanat
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -225,7 +225,7 @@ $vars->{'bug_severity'} = Bugzilla::Field->new({name => 'bug_severity'})->legal_ $vars->{'resolution'} = Bugzilla::Field->new({name => 'resolution'})->legal_values; # Boolean charts -my @fields = Bugzilla->get_fields({ obsolete => 0 }); +my @fields = @{ Bugzilla->fields({ obsolete => 0 }) }; # If we're not in the time-tracking group, exclude time-tracking fields. if (!Bugzilla->user->is_timetracker) { |