From aa888f2218179d59b4f0b8e51e43b863f1da3e43 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Sat, 8 Sep 2007 05:14:25 +0000 Subject: Bug 287330: Multi-Select Custom Fields Patch By Max Kanat-Alexander r=LpSolit, a=LpSolit --- editvalues.cgi | 2 ++ 1 file changed, 2 insertions(+) (limited to 'editvalues.cgi') 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); -- cgit v1.2.3-24-g4f1b