diff options
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 2d8c2d92c..22e1dc78a 100755 --- a/config.cgi +++ b/config.cgi @@ -93,7 +93,7 @@ $vars->{'closed_status'} = \@closed_status; # Generate a list of fields that can be queried. my @fields = @{Bugzilla::Field->match({obsolete => 0})}; # Exclude fields the user cannot query. -if (!Bugzilla->user->in_group(Bugzilla->params->{'timetrackinggroup'})) { +if (!Bugzilla->user->is_timetracker) { @fields = grep { $_->name !~ /^(estimated_time|remaining_time|work_time|percentage_complete|deadline)$/ } @fields; } $vars->{'field'} = \@fields; |