From f276a11f82d1670eea4014f4d87b289d4b7921ca Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Fri, 12 Mar 2010 00:39:16 +0100 Subject: Bug 551210: Retargetted flags should be deleted if the flag setter has no privs to set the flag in the new product a=LpSolit --- Bugzilla/Flag.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Bugzilla/Flag.pm') diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index af07bfaa1..59308501a 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -550,6 +550,8 @@ sub retarget { foreach my $flagtype (@flagtypes) { next if !$flagtype->is_active; next if (!$flagtype->is_multiplicable && scalar @{$flagtype->{flags}}); + next unless (($self->status eq '?' && $self->setter->can_request_flag($flagtype)) + || $self->setter->can_set_flag($flagtype)); $self->{type_id} = $flagtype->id; delete $self->{type}; -- cgit v1.2.3-24-g4f1b