From c08b52f1882e580d52c8426f77f56dc1eee2652e Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" Date: Wed, 18 Dec 2002 08:01:51 +0000 Subject: [PATCH] Bug 185944: radio buttons for adding/removing groups on the change-multiple-bugs screen all had the same name r=bbaetz, a=justdave git-svn-id: svn://10.0.0.236/trunk@135455 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/buglist.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/buglist.cgi b/mozilla/webtools/bugzilla/buglist.cgi index ef12d124253..118d542c96b 100755 --- a/mozilla/webtools/bugzilla/buglist.cgi +++ b/mozilla/webtools/bugzilla/buglist.cgi @@ -216,7 +216,7 @@ sub GetGroupsByUserId { while (MoreSQLData()) { my $group = {}; - ($group->{'bug_id'}, $group->{'name'}, + ($group->{'id'}, $group->{'name'}, $group->{'description'}, $group->{'isactive'}) = FetchSQLData(); push(@groups, $group); }