From: Frédéric Buclin Date: Wed, 3 Oct 2012 17:38:30 +0000 (+0200) Subject: Bug 757935: Bugs with resolution MOVED cannot be edited X-Git-Tag: bugzilla-4.2.4~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f956cb59539b58585a9f6723c04b3b465a53fd51;p=thirdparty%2Fbugzilla.git Bug 757935: Bugs with resolution MOVED cannot be edited r=glob a=LpSolit --- diff --git a/extensions/OldBugMove/Extension.pm b/extensions/OldBugMove/Extension.pm index b12d36a9aa..d1b9537483 100644 --- a/extensions/OldBugMove/Extension.pm +++ b/extensions/OldBugMove/Extension.pm @@ -132,7 +132,9 @@ sub _check_bug_resolution { my $original_validator = shift; my ($invocant, $resolution) = @_; - if ($resolution eq 'MOVED' and !Bugzilla->input_params->{'oldbugmove'}) { + if ($resolution eq 'MOVED' && $invocant->resolution ne 'MOVED' + && !Bugzilla->input_params->{'oldbugmove'}) + { # MOVED has a special meaning and can only be used when # really moving bugs to another installation. ThrowUserError('oldbugmove_no_manual_move');