diff options
author | gerv%gerv.net <> | 2005-04-01 08:48:28 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2005-04-01 08:48:28 +0200 |
commit | b53d8ff17217f193e604a50f3a5c37b33fec5e3f (patch) | |
tree | d58e261d376c4518b1b7a51cb8bde27e09cf1f31 | |
parent | 1b7fca4465afeced6cb4120ebe11154a6ea46389 (diff) | |
download | bugzilla-b53d8ff17217f193e604a50f3a5c37b33fec5e3f.tar.gz bugzilla-b53d8ff17217f193e604a50f3a5c37b33fec5e3f.tar.xz |
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.
-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'); } |