From 4da6626d5fdc933e2c65b1b15e614f20a6e5138c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Buclin?= Date: Mon, 8 Feb 2010 01:08:02 +0100 Subject: [PATCH] Bug 544798: Using edit-multiple causes "To reassign a bug, you must provide an address for the new assignee. " r/a=mkanat --- Bugzilla/User.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 244bc5b941..e0c5b132f9 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -1186,7 +1186,9 @@ sub match_field { } $fields = $expanded_fields; - for my $field (keys %{$fields}) { + foreach my $field (keys %{$fields}) { + next unless defined $data->{$field}; + #Concatenate login names, so that we have a common way to handle them. my $raw_field; if (ref $data->{$field}) { -- 2.47.2