diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-04-12 20:00:11 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-04-12 20:00:11 +0200 |
commit | 978956aeeeabf9adbe0825d7b547bc570819c23a (patch) | |
tree | 737538207b174b549fe181418bdbe2feb18221a5 | |
parent | ea21fb4e6f33b9b445d7c0cfe553d73ce0bc8f78 (diff) | |
download | bugzilla-978956aeeeabf9adbe0825d7b547bc570819c23a.tar.gz bugzilla-978956aeeeabf9adbe0825d7b547bc570819c23a.tar.xz |
Bug 744823 - Deadline throws error when selected in change history field list in query.cgi when not in time tracking group
r/a=LpSolit
-rwxr-xr-x | query.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -188,6 +188,7 @@ foreach my $val (editable_bug_fields()) { if (Bugzilla->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); } |