summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/DB.pm
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-03-18 14:11:27 +0100
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-03-18 14:11:27 +0100
commitd0b17e984b42fea65eb4e8ecfd586e958507cb2c (patch)
treecfa63d20d3f951d0f9b92b956fdb5f410ada9627 /Bugzilla/Install/DB.pm
parente03ba3a9693ea4704d46574d9f6ed5cdcf2504b8 (diff)
downloadbugzilla-d0b17e984b42fea65eb4e8ecfd586e958507cb2c.tar.gz
bugzilla-d0b17e984b42fea65eb4e8ecfd586e958507cb2c.tar.xz
Bug 395461: Allow multi-select fields to show up in buglist.cgi
r=dkl, a=mkanat
Diffstat (limited to 'Bugzilla/Install/DB.pm')
-rw-r--r--Bugzilla/Install/DB.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index 28f91a23c..1a3ffc69b 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -105,6 +105,8 @@ sub update_fielddefs_definition {
#2008-08-26 elliotte_martin@yahoo.com - Bug 251556
$dbh->bz_add_column('fielddefs', 'reverse_desc', {TYPE => 'TINYTEXT'});
+ $dbh->do('UPDATE fielddefs SET buglist = 1
+ WHERE custom = 1 AND type = ' . FIELD_TYPE_MULTI_SELECT);
# Remember, this is not the function for adding general table changes.
# That is below. Add new changes to the fielddefs table above this