Skip to content

Commit

Permalink
merged, changed recordsize to 50
Browse files Browse the repository at this point in the history
  • Loading branch information
toyomoyo committed Jun 8, 2006
1 parent cb27c4e commit 1c994d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion admin/utfdbmigrate.php
Expand Up @@ -469,7 +469,7 @@ function db_migrate2utf8(){ //Eloy: Perhaps some type of limit parameter here
// could not use count_records because it addes prefix to adodb_logsql
$totalrecords = count_records_sql("select count(*) from {$prefix}$dbtablename");
$counter = 0;
$recordsetsize = 4;
$recordsetsize = 50;

if ($crash) { //if resuming from crash
//find the number of records with id smaller than the crash id
Expand Down
2 changes: 1 addition & 1 deletion lib/db/migrate2utf8.php
Expand Up @@ -44,7 +44,7 @@ function migrate2utf8_user($fields, $crash, $debug, $maxrecords) {

$totalrecords = count_records_sql("select count(*) from {$CFG->prefix}user");
$counter = 0;
$recordsetsize = 4;
$recordsetsize = 50;

if ($crash) { //if resuming from crash
//find the number of records with id smaller than the crash id
Expand Down

0 comments on commit 1c994d8

Please sign in to comment.