]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 170195 Regression - buglist highlighting broken
authorbugreport%peshkin.net <>
Fri, 27 Sep 2002 23:44:58 +0000 (23:44 +0000)
committerbugreport%peshkin.net <>
Fri, 27 Sep 2002 23:44:58 +0000 (23:44 +0000)
r=myk

buglist.cgi

index 728ead4d1e76dfe9b601f42192c288e793c6329f..f466780b1a97cd6a3e962b2fe1d22f75dd569534 100755 (executable)
@@ -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;
     }