summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
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;
}