From b0642d67ae6a9a7e7bbb8b8dc7a832c26bb211af Mon Sep 17 00:00:00 2001 From: Max Kanat-Alexander Date: Mon, 1 Feb 2010 17:34:26 -0800 Subject: Bug 487508: Allow restricting the visibility of custom fields and values by component r=dkl, a=mkanat --- Bugzilla/Migrate.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla/Migrate.pm') diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm index 282279e75..6c353357d 100644 --- a/Bugzilla/Migrate.pm +++ b/Bugzilla/Migrate.pm @@ -323,7 +323,7 @@ sub reset_serial_values { ); my @select_fields = grep { $_->is_select } (values %{ $self->bug_fields }); foreach my $field (@select_fields) { - next if $field->name eq 'product'; + next if $field->is_abnormal; $reset{$field->name} = 'id'; } @@ -709,8 +709,8 @@ sub insert_bugs { $self->debug($bug, 3); foreach my $field (@standard_drop_downs) { + next if $field->is_abnormal; my $field_name = $field->name; - next if $field_name eq 'product'; if (!defined $bug->{$field_name}) { # If there's a default value for this, then just let create() # pick it. -- cgit v1.2.3-24-g4f1b