diff options
author | justdave%syndicomm.com <> | 2002-12-18 16:01:51 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-12-18 16:01:51 +0000 |
commit | 909d037ec1924ec49ba325e4dc77275e6697b078 (patch) | |
tree | af3f973eb2d3c3f4df33506af216516c83d23656 /buglist.cgi | |
parent | Bug 184949 - CSV buglists are missing the Bug ID column. Patch by gerv; r,a=j... (diff) | |
download | bugzilla-909d037ec1924ec49ba325e4dc77275e6697b078.tar.gz bugzilla-909d037ec1924ec49ba325e4dc77275e6697b078.tar.bz2 bugzilla-909d037ec1924ec49ba325e4dc77275e6697b078.zip |
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); } |