diff options
author | lpsolit%gmail.com <> | 2008-02-25 22:06:24 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2008-02-25 22:06:24 +0000 |
commit | 816eb1e9bd788b2b3468481281793639c824996d (patch) | |
tree | 9e272644a04e3dec038785e4d819ff9fe25fe1e6 /importxml.pl | |
parent | Bug 415676: Remove all mentions of landfill.bugzilla.org/ppm from the documen... (diff) | |
download | bugzilla-816eb1e9bd788b2b3468481281793639c824996d.tar.gz bugzilla-816eb1e9bd788b2b3468481281793639c824996d.tar.bz2 bugzilla-816eb1e9bd788b2b3468481281793639c824996d.zip |
Bug 415652: Implement Bugzilla->active_custom_fields - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'importxml.pl')
-rwxr-xr-x | importxml.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/importxml.pl b/importxml.pl index 80506971c..1ed9253b8 100755 --- a/importxml.pl +++ b/importxml.pl @@ -1028,9 +1028,9 @@ sub process_bug { push( @values, $status ); # Custom fields - foreach my $custom_field (Bugzilla->custom_field_names) { + foreach my $field (Bugzilla->active_custom_fields) { + my $custom_field = $field->name; next unless defined($bug_fields{$custom_field}); - my $field = new Bugzilla::Field({name => $custom_field}); if ($field->type == FIELD_TYPE_FREETEXT) { push(@query, $custom_field); push(@values, clean_text($bug_fields{$custom_field})); |