summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2004-08-02 14:30:35 +0200
committerbugreport%peshkin.net <>2004-08-02 14:30:35 +0200
commit9de124643f35ac4b94b6974d9ee6b5af9e8b2bb6 (patch)
tree9bafd78e77c1c87a0e5ed766d63739439dfd2253 /checksetup.pl
parent610b44eb41ad6e890d5e9dcd090e4bd9549b0fbc (diff)
downloadbugzilla-9de124643f35ac4b94b6974d9ee6b5af9e8b2bb6.tar.gz
bugzilla-9de124643f35ac4b94b6974d9ee6b5af9e8b2bb6.tar.xz
Bug 253968: Fix extra column in insert statement in checksetup
r=glob a=justdave
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index e3de12d27..2d96032f3 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";