diff options
author | mkanat%bugzilla.org <> | 2007-09-08 07:14:25 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2007-09-08 07:14:25 +0200 |
commit | aa888f2218179d59b4f0b8e51e43b863f1da3e43 (patch) | |
tree | 4e6bf6ff4b7066b19c5b1728dd325adf4bed1f78 /editvalues.cgi | |
parent | 16336299f17522d040736cb0f063694381d9d761 (diff) | |
download | bugzilla-aa888f2218179d59b4f0b8e51e43b863f1da3e43.tar.gz bugzilla-aa888f2218179d59b4f0b8e51e43b863f1da3e43.tar.xz |
Bug 287330: Multi-Select Custom Fields
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'editvalues.cgi')
-rwxr-xr-x | editvalues.cgi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editvalues.cgi b/editvalues.cgi index 951078389..a9d5878c0 100755 --- a/editvalues.cgi +++ b/editvalues.cgi @@ -41,6 +41,8 @@ our @valid_fields = ('op_sys', 'rep_platform', 'priority', 'bug_severity', # Add custom select fields. my @custom_fields = Bugzilla->get_fields({custom => 1, type => FIELD_TYPE_SINGLE_SELECT}); +push(@custom_fields, Bugzilla->get_fields({custom => 1, + type => FIELD_TYPE_MULTI_SELECT})); push(@valid_fields, map { $_->name } @custom_fields); |