diff options
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php index ccda20707..8c3362119 100644 --- a/update.php +++ b/update.php @@ -289,7 +289,7 @@ function update_fix_watchdog() { function update_do_one($module, $number, &$context) { $function = $module .'_update_'. $number; if (function_exists($function)) { - $ret = $function(&$context['sandbox']); + $ret = $function($context['sandbox']); } if (isset($ret['#finished'])) { |