diff options
author | lpsolit%gmail.com <> | 2008-02-25 23:06:24 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-02-25 23:06:24 +0100 |
commit | 816eb1e9bd788b2b3468481281793639c824996d (patch) | |
tree | 9e272644a04e3dec038785e4d819ff9fe25fe1e6 /process_bug.cgi | |
parent | 8ef50bdaba56ee100821c51ff141e00d26723dc7 (diff) | |
download | bugzilla-816eb1e9bd788b2b3468481281793639c824996d.tar.gz bugzilla-816eb1e9bd788b2b3468481281793639c824996d.tar.xz |
Bug 415652: Implement Bugzilla->active_custom_fields - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 4ea6c1f7f..93b2ec1ff 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -307,7 +307,7 @@ my @set_fields = qw(op_sys rep_platform priority bug_severity deadline remaining_time estimated_time); push(@set_fields, 'assigned_to') if !$cgi->param('set_default_assignee'); push(@set_fields, 'qa_contact') if !$cgi->param('set_default_qa_contact'); -my @custom_fields = Bugzilla->get_fields({custom => 1, obsolete => 0}); +my @custom_fields = Bugzilla->active_custom_fields; my %methods = ( bug_severity => 'set_severity', |