From e0946fe716dffb0852494c09c436b099fe593697 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 15 Mar 2006 06:47:23 +0000 Subject: =?UTF-8?q?Bug=20329022:=20Remove=20group=5Fname=5Fto=5Fid=20in=20?= =?UTF-8?q?favor=20of=20creating=20Group=20objects=20-=20Patch=20by=20R?= =?UTF-8?q?=C3=A9mi=20Zara=20=20r=3DLpSolit=20a=3Djus?= =?UTF-8?q?tdave?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- editproducts.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editproducts.cgi') diff --git a/editproducts.cgi b/editproducts.cgi index 68e6bd42a..30b3d32a6 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -235,7 +235,7 @@ if ($action eq 'new') { if (Param("makeproductgroups")) { # Next we insert into the groups table my $productgroup = $product->name; - while (group_name_to_id($productgroup)) { + while (new Bugzilla::Group({name => $productgroup})) { $productgroup .= '_'; } my $group_description = "Access to bugs in the " . @@ -250,7 +250,7 @@ if ($action eq 'new') { # If we created a new group, give the "admin" group priviledges # initially. - my $admin = group_name_to_id('admin'); + my $admin = Bugzilla::Group->new({name => 'admin'})->id(); my $sth = $dbh->prepare('INSERT INTO group_group_map (member_id, grantor_id, grant_type) -- cgit v1.2.1