From 46e5d925026ccde28118bfcf28061c75f188b066 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Mon, 26 Nov 2012 20:20:29 +0100 Subject: Bug 718289: The deadline field should be visible by non-members of the timetracking group r=dkl a=LpSolit --- query.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'query.cgi') diff --git a/query.cgi b/query.cgi index 29e278c6d..b62f77b53 100755 --- a/query.cgi +++ b/query.cgi @@ -190,9 +190,9 @@ foreach my $val (editable_bug_fields()) { if ($user->is_timetracker) { push @chfields, "work_time"; } else { - @chfields = grep($_ ne "deadline", @chfields); - @chfields = grep($_ ne "estimated_time", @chfields); - @chfields = grep($_ ne "remaining_time", @chfields); + foreach my $tt_field (TIMETRACKING_FIELDS) { + @chfields = grep($_ ne $tt_field, @chfields); + } } @chfields = (sort(@chfields)); $vars->{'chfield'} = \@chfields; -- cgit v1.2.3-24-g4f1b