From: bugreport%peshkin.net <> Date: Sat, 30 Nov 2002 11:46:03 +0000 (+0000) Subject: Bug 181951 Cannot delete groups X-Git-Tag: bugzilla-2.17.2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d707f3797346662cee38575de18862770e7869d4;p=thirdparty%2Fbugzilla.git Bug 181951 Cannot delete groups Patch by joel r=burnus,bbaetz a=justdave --- diff --git a/editgroups.cgi b/editgroups.cgi index 031a23c9e0..a9af65bc61 100755 --- a/editgroups.cgi +++ b/editgroups.cgi @@ -528,7 +528,7 @@ if ($action eq 'delete') { } SendSQL("SELECT name " . "FROM groups " . - "WHERE group_id = " . SqlQuote($gid)); + "WHERE id = " . SqlQuote($gid)); my ($name) = FetchSQLData(); my $cantdelete = 0;