Index: includes/batch.inc =================================================================== RCS file: /Users/wright/drupal/local_repo/drupal/includes/batch.inc,v retrieving revision 1.41 diff -u -p -r1.41 batch.inc --- includes/batch.inc 9 Oct 2009 00:59:54 -0000 1.41 +++ includes/batch.inc 10 Oct 2009 11:23:02 -0000 @@ -181,7 +181,7 @@ function _batch_progress_page_nojs() { // Perform actual processing. list($percentage, $message) = _batch_process($batch); - if ($percentage == 100) { + if ($percentage >= 100) { $new_op = 'finished'; } @@ -245,7 +245,7 @@ function _batch_process() { call_user_func_array($function, array_merge($args, array(&$batch_context))); } - if ($finished == 1) { + if ($finished >= 1) { // Make sure this step is not counted twice when computing $current. $finished = 0; // Remove the processed operation and clear the sandbox.