diff options
author | mkanat%kerio.com <> | 2005-02-19 00:01:47 +0000 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-02-19 00:01:47 +0000 |
commit | 62eecf24480520e204ab0057f8f7845c13f37c13 (patch) | |
tree | 99252665b81610168701173d4b5ce272c378fda6 /editgroups.cgi | |
parent | c720bf60573fdb92874056ffd07c3d6055df22af (diff) | |
download | bugs-62eecf24480520e204ab0057f8f7845c13f37c13.tar bugs-62eecf24480520e204ab0057f8f7845c13f37c13.tar.gz bugs-62eecf24480520e204ab0057f8f7845c13f37c13.tar.bz2 bugs-62eecf24480520e204ab0057f8f7845c13f37c13.tar.xz bugs-62eecf24480520e204ab0057f8f7845c13f37c13.zip |
Bug 280494: Replace "SELECT LAST_INSERT_ID()" with Bugzilla::DB function call
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=justdave
Diffstat (limited to 'editgroups.cgi')
-rwxr-xr-x | editgroups.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editgroups.cgi b/editgroups.cgi index c3be719c7..02f24b1e4 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -274,8 +274,7 @@ if ($action eq 'new') { "1," . SqlQuote($regexp) . ", " . $isactive . ", NOW())" ); - SendSQL("SELECT last_insert_id()"); - my $gid = FetchOneColumn(); + my $gid = $dbh->bz_last_key('groups', 'id'); my $admin = GroupNameToId('admin'); # Since we created a new group, give the "admin" group all privileges # initially. |