summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2002-09-28 01:44:58 +0200
committerbugreport%peshkin.net <>2002-09-28 01:44:58 +0200
commite7e29be9a018fc16c08b56576d1b6bcc104305df (patch)
tree8c821c8935f6fa4be5479bdc10f095366c6bd616 /buglist.cgi
parent1b19c08c0ea4a3bdac06fae889d4a8dc257c802a (diff)
downloadbugzilla-e7e29be9a018fc16c08b56576d1b6bcc104305df.tar.gz
bugzilla-e7e29be9a018fc16c08b56576d1b6bcc104305df.tar.xz
Bug 170195 Regression - buglist highlighting broken
r=myk
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi4
1 files changed, 3 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 728ead4d1..f466780b1 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -612,7 +612,9 @@ while (my @row = FetchSQLData()) {
my $bug = {}; # a record
# Slurp the row of data into the record.
- foreach my $column (@selectcolumns) {
+ # The second from last column in the record is the number of groups
+ # to which the bug is restricted.
+ foreach my $column (@selectcolumns, 'dummy', 'groupset', 'dummy' ) {
$bug->{$column} = shift @row;
}