diff options
author | Andi Gutmans <andi@php.net> | 1999-11-16 20:31:29 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-11-16 20:31:29 +0000 |
commit | 3cd140cdef1776b12da1945a5daaf1366a08b9d2 (patch) | |
tree | 8e58254fe2967842d513eef821294cd6834bdbe5 | |
parent | 61142e4341ff68aae0ff137e1c757c00d39d6df5 (diff) | |
download | php-git-3cd140cdef1776b12da1945a5daaf1366a08b9d2.tar.gz |
- Weird that this compiled for me.
-rw-r--r-- | Zend/zend_execute_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 4be3f58808..19b8e4b6ed 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -382,7 +382,7 @@ int call_user_function_ex(HashTable *function_table, zval *object, zval *functio EG(return_value)=original_return_value; EG(opline_ptr) = original_opline_ptr; } else { - ((zend_internal_function *) function_state.function)->handler(param_count, retval, &EG(regular_list), &EG(persistent_list), object); + ((zend_internal_function *) function_state.function)->handler(param_count, retval, &EG(regular_list), &EG(persistent_list), object, 1); } zend_ptr_stack_clear_multiple(ELS_C); EG(function_state_ptr) = original_function_state_ptr; |