diff options
author | Zeev Suraski <zeev@php.net> | 1999-08-07 15:31:57 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-08-07 15:31:57 +0000 |
commit | 125300b56328d1c56c61efa72f53499c1a586e3e (patch) | |
tree | 97bc364ccbb34ea382b9fd1ca7011d5f75665289 /ext | |
parent | 04876505361e394bc1153e7dc392bd0972347a9f (diff) | |
download | php-git-125300b56328d1c56c61efa72f53499c1a586e3e.tar.gz |
Fix&improve conversion scripts
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/basic_functions.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index f550a1f22f..733b06bd06 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -1464,7 +1464,8 @@ static int php_array_walk(pval **a) return 0; } -PHP_FUNCTION(array_walk) { +PHP_FUNCTION(array_walk) +{ pval *array, *old_walk_func_name; HashTable *target_hash; |