From: bugreport%peshkin.net <> Date: Fri, 27 Sep 2002 23:44:58 +0000 (+0000) Subject: Bug 170195 Regression - buglist highlighting broken X-Git-Tag: bugzilla-2.17.1~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7e29be9a018fc16c08b56576d1b6bcc104305df;p=thirdparty%2Fbugzilla.git Bug 170195 Regression - buglist highlighting broken r=myk --- diff --git a/buglist.cgi b/buglist.cgi index 728ead4d1e..f466780b1a 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; }