From: bugreport%peshkin.net <> Date: Mon, 2 Aug 2004 12:30:35 +0000 (+0000) Subject: Bug 253968: Fix extra column in insert statement in checksetup X-Git-Tag: bugzilla-2.19.1~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9de124643f35ac4b94b6974d9ee6b5af9e8b2bb6;p=thirdparty%2Fbugzilla.git Bug 253968: Fix extra column in insert statement in checksetup r=glob a=justdave --- diff --git a/checksetup.pl b/checksetup.pl index e3de12d279..2d96032f36 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -4254,7 +4254,7 @@ if ($sth->rows == 0) { foreach my $group ( @groups ) { $dbh->do("INSERT INTO group_group_map (member_id, grantor_id, grant_type) - VALUES ($id, $group, 1, " . GROUP_BLESS . ")"); + VALUES ($id, $group, " . GROUP_BLESS . ")"); } print "\n$login is now set up as an administrator account.\n";