diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-03-18 14:11:27 +0100 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-03-18 14:11:27 +0100 |
commit | d0b17e984b42fea65eb4e8ecfd586e958507cb2c (patch) | |
tree | cfa63d20d3f951d0f9b92b956fdb5f410ada9627 /Bugzilla/Install | |
parent | e03ba3a9693ea4704d46574d9f6ed5cdcf2504b8 (diff) | |
download | bugzilla-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')
-rw-r--r-- | Bugzilla/Install/DB.pm | 2 |
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 |