summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorMatt Tyson <mtyson@redhat.com>2013-02-17 02:16:55 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2013-02-17 02:16:55 +0100
commitd6bcb48dc26f6c3691643093172fdaab53e99003 (patch)
treee281670505d1af32f766feb302d0c76b27a8df01 /Bugzilla/Bug.pm
parent331fee414c98ff0eda46173bf2ebb700295461e7 (diff)
downloadbugzilla-d6bcb48dc26f6c3691643093172fdaab53e99003.tar.gz
bugzilla-d6bcb48dc26f6c3691643093172fdaab53e99003.tar.xz
Bug 839950: Cannot search by Change History on multi-select fields
r/a=LpSolit
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm8
1 files changed, 6 insertions, 2 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index b3f782002..703ef1bb6 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -3770,9 +3770,13 @@ sub bug_alias_to_id {
# Subroutines
#####################################################################
-# Represents which fields from the bugs table are handled by process_bug.cgi.
+# Returns a list of currently active and editable bug fields,
+# including multi-select fields.
sub editable_bug_fields {
my @fields = Bugzilla->dbh->bz_table_columns('bugs');
+ # Add multi-select fields
+ push(@fields, map { $_->name } @{Bugzilla->fields({obsolete => 0,
+ type => FIELD_TYPE_MULTI_SELECT})});
# Obsolete custom fields are not editable.
my @obsolete_fields = @{ Bugzilla->fields({obsolete => 1, custom => 1}) };
@obsolete_fields = map { $_->name } @obsolete_fields;
@@ -3780,7 +3784,7 @@ sub editable_bug_fields {
"lastdiffed", @obsolete_fields)
{
my $location = firstidx { $_ eq $remove } @fields;
- # Custom multi-select fields are not stored in the bugs table.
+ # Ensure field exists before attempting to remove it.
splice(@fields, $location, 1) if ($location > -1);
}
return @fields;