From 9003e7590fe22a07f3f0bd5425f9d02280e3bde0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Mon, 7 May 2007 10:06:00 +0000 Subject: #141575 by yched: remove call time pass by reference --- update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'update.php') 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'])) { -- cgit v1.2.3