diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-18 22:48:21 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-18 22:48:21 +0200 |
commit | db2a5492739a143ff828bbf25b1c97ab1524a9b9 (patch) | |
tree | 5047b59069a9f21f4a45ce770d991fc53fcba245 /Bugzilla/Field | |
parent | 7ae63b1e06f607ede3ed32829ac9316e4c657247 (diff) | |
download | bugzilla-db2a5492739a143ff828bbf25b1c97ab1524a9b9.tar.gz bugzilla-db2a5492739a143ff828bbf25b1c97ab1524a9b9.tar.xz |
Bug 556422: Move the existing bug-moving functionality into an extension
called OldBugMove.
r=dkl, a=mkanat
Diffstat (limited to 'Bugzilla/Field')
-rw-r--r-- | Bugzilla/Field/ChoiceInterface.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Field/ChoiceInterface.pm b/Bugzilla/Field/ChoiceInterface.pm index 5b796270b..a718377c2 100644 --- a/Bugzilla/Field/ChoiceInterface.pm +++ b/Bugzilla/Field/ChoiceInterface.pm @@ -99,7 +99,7 @@ sub is_static { # If we need to special-case Resolution for *anything* else, it should # get its own subclass. if ($self->field->name eq 'resolution') { - return grep($_ eq $self->name, ('', 'FIXED', 'MOVED', 'DUPLICATE')) + return grep($_ eq $self->name, ('', 'FIXED', 'DUPLICATE')) ? 1 : 0; } elsif ($self->field->custom) { |