Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
9003e759
Commit
9003e759
authored
May 07, 2007
by
Gábor Hojtsy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#141575
by yched: remove call time pass by reference
parent
54d0948f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
update.php
update.php
+1
-1
No files found.
update.php
View file @
9003e759
...
...
@@ -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'
]))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment