summaryrefslogtreecommitdiff
path: root/includes/batch.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-06-04 13:11:34 +0000
committerDries Buytaert <dries@buytaert.net>2007-06-04 13:11:34 +0000
commitf16f70a89e45cae4eb6ca41d72d751abfe95186f (patch)
tree45b7dd2ec15c7171dfea6c63d0a3dc13ffdc9ee7 /includes/batch.inc
parente31d3bdc24d07d5c3de4fb850d6a5142032fc8a1 (diff)
downloadbrdo-f16f70a89e45cae4eb6ca41d72d751abfe95186f.tar.gz
brdo-f16f70a89e45cae4eb6ca41d72d751abfe95186f.tar.bz2
- Patch #146667 by yched: FAPI fix.
Diffstat (limited to 'includes/batch.inc')
-rw-r--r--includes/batch.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/batch.inc b/includes/batch.inc
index 2808f698a..5ae4d4984 100644
--- a/includes/batch.inc
+++ b/includes/batch.inc
@@ -235,7 +235,7 @@ function _batch_next_set() {
if (isset($current_set['form_submit']) && ($function = $current_set['form_submit']) && function_exists($function)) {
// We use our stored copies of $form and $form_state, to account for
// possible alteration by the submit handlers.
- $function($batch['form'], $batch['form_state'], $batch['form_state']['values']);
+ $function($batch['form'], $batch['form_state']);
}
return TRUE;
}