summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-05-07 10:06:00 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-05-07 10:06:00 +0000
commit9003e7590fe22a07f3f0bd5425f9d02280e3bde0 (patch)
tree00a999976cf5703893818150e32ff7c67bd58dd4 /update.php
parent54d0948f25c149d88d9b29d2f48d7caf6486054c (diff)
downloadbrdo-9003e7590fe22a07f3f0bd5425f9d02280e3bde0.tar.gz
brdo-9003e7590fe22a07f3f0bd5425f9d02280e3bde0.tar.bz2
#141575 by yched: remove call time pass by reference
Diffstat (limited to 'update.php')
-rw-r--r--update.php2
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'])) {