diff options
author | lpsolit%gmail.com <> | 2006-03-15 06:47:23 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-03-15 06:47:23 +0000 |
commit | e0946fe716dffb0852494c09c436b099fe593697 (patch) | |
tree | 833a1dc6b5649ea7c9181a808cd69e4c9b2a9521 /editgroups.cgi | |
parent | Bug 311422: describecomponents.cgi and enter_bug.cgi need some cleanup - Patc... (diff) | |
download | bugzilla-e0946fe716dffb0852494c09c436b099fe593697.tar.gz bugzilla-e0946fe716dffb0852494c09c436b099fe593697.tar.bz2 bugzilla-e0946fe716dffb0852494c09c436b099fe593697.zip |
Bug 329022: Remove group_name_to_id in favor of creating Group objects - Patch by Rémi Zara <remi_zara@mac.com> r=LpSolit a=justdave
Diffstat (limited to 'editgroups.cgi')
-rwxr-xr-x | editgroups.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editgroups.cgi b/editgroups.cgi index a2b33b3f9..d28d95f19 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -294,7 +294,7 @@ if ($action eq 'new') { undef, ($name, $desc, $regexp, $isactive)); my $gid = $dbh->bz_last_key('groups', 'id'); - my $admin = group_name_to_id('admin'); + my $admin = Bugzilla::Group->new({name => 'admin'})->id(); # Since we created a new group, give the "admin" group all privileges # initially. my $sth = $dbh->prepare('INSERT INTO group_group_map |