diff options
author | gerv%gerv.net <> | 2005-04-01 06:48:28 +0000 |
---|---|---|
committer | gerv%gerv.net <> | 2005-04-01 06:48:28 +0000 |
commit | b53d8ff17217f193e604a50f3a5c37b33fec5e3f (patch) | |
tree | d58e261d376c4518b1b7a51cb8bde27e09cf1f31 /checksetup.pl | |
parent | Followup fix for bug 284446: add hook inside enter bug form so that test runn... (diff) | |
download | bugzilla-b53d8ff17217f193e604a50f3a5c37b33fec5e3f.tar.gz bugzilla-b53d8ff17217f193e604a50f3a5c37b33fec5e3f.tar.bz2 bugzilla-b53d8ff17217f193e604a50f3a5c37b33fec5e3f.zip |
Bug 288408 - make number of placeholders match number of parameters to stop error when initialising from new database. Patch by gerv; r=mkanat, a=justdave.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index 0d12c8256..d33d81219 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -4222,7 +4222,7 @@ if ($sth->rows == 0) { $dbh->do( q{INSERT INTO profiles (login_name, realname, cryptpassword, disabledtext, refreshed_when) - VALUES (?, ?, ?, ?, ?, ?)}, + VALUES (?, ?, ?, ?, ?)}, undef, $login, $realname, $cryptedpassword, '', '1900-01-01 00:00:00'); } |