Bug 460143: Bug.legal_values doesn't allow you to get values for multi-select fields - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
git-svn-id: svn://10.0.0.236/trunk@254681 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -29,7 +29,6 @@ use Bugzilla::Field;
|
||||
use Bugzilla::WebService::Constants;
|
||||
use Bugzilla::Bug;
|
||||
use Bugzilla::BugMail;
|
||||
use Bugzilla::Constants;
|
||||
|
||||
#############
|
||||
# Constants #
|
||||
@@ -193,8 +192,8 @@ sub legal_values {
|
||||
my ($self, $params) = @_;
|
||||
my $field = FIELD_MAP->{$params->{field}} || $params->{field};
|
||||
|
||||
my @custom_select =
|
||||
Bugzilla->get_fields({ type => FIELD_TYPE_SINGLE_SELECT });
|
||||
my @custom_select = Bugzilla->get_fields(
|
||||
{custom => 1, type => [FIELD_TYPE_SINGLE_SELECT, FIELD_TYPE_MULTI_SELECT]});
|
||||
# We only want field names.
|
||||
@custom_select = map {$_->name} @custom_select;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user