From: Frédéric Buclin Date: Sat, 23 Apr 2011 00:01:31 +0000 (+0200) Subject: Bug 650624: Changing the requestee of a flag should not change the requester X-Git-Tag: bugzilla-4.1.2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c01ae87b090bed0e655ed8e36d41405b28079d1;p=thirdparty%2Fbugzilla.git Bug 650624: Changing the requestee of a flag should not change the requester a=LpSolit --- diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index c4bd6fef65..8457a559c8 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -602,8 +602,6 @@ sub force_retarget { sub _set_requestee { my ($self, $requestee, $attachment, $skip_requestee_on_error) = @_; - # Used internally to check if the requestee is retargetting the request. - $self->{_old_requestee_id} = $self->requestee ? $self->requestee->id : 0; $self->{requestee} = $self->_check_requestee($requestee, $attachment, $skip_requestee_on_error); @@ -725,9 +723,9 @@ sub _check_setter { old_status => $self->{_old_status} }); } - # If the requester is retargetting the request, we don't - # update the setter, so that the setter gets the notification. - if ($status eq '?' && $self->{_old_requestee_id} == $setter->id) { + # If the request is being retargetted, we don't update + # the setter, so that the setter gets the notification. + if ($status eq '?' && $self->{_old_status} eq '?') { return $self->setter; } return $setter;