diff options
author | justdave%syndicomm.com <> | 2002-12-18 17:01:51 +0100 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-12-18 17:01:51 +0100 |
commit | 909d037ec1924ec49ba325e4dc77275e6697b078 (patch) | |
tree | af3f973eb2d3c3f4df33506af216516c83d23656 /buglist.cgi | |
parent | 4eac64e00051e79544eedd2c2e6698f4c2702ec2 (diff) | |
download | bugzilla-909d037ec1924ec49ba325e4dc77275e6697b078.tar.gz bugzilla-909d037ec1924ec49ba325e4dc77275e6697b078.tar.xz |
Bug 185944: radio buttons for adding/removing groups on the change-multiple-bugs screen all had the same name
r=bbaetz, a=justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index ef12d1242..118d542c9 100755 --- a/buglist.cgi +++ b/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); } |