summaryrefslogtreecommitdiff
path: root/Zend/zend_interfaces.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-10-03 12:36:36 +0000
committerMarcus Boerger <helly@php.net>2005-10-03 12:36:36 +0000
commit48d9adc3f0036cbbde47b6ec8269d0b128bc0a68 (patch)
tree1fd518883b1bd17d95cfed5dd78b57339e007e4e /Zend/zend_interfaces.c
parente117d540d1f876aaef127ff9351e82c15abcaff1 (diff)
downloadphp-git-48d9adc3f0036cbbde47b6ec8269d0b128bc0a68.tar.gz
- MFH Allow uncached global functions
Diffstat (limited to 'Zend/zend_interfaces.c')
-rwxr-xr-xZend/zend_interfaces.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_interfaces.c b/Zend/zend_interfaces.c
index 7454311d61..623c558db3 100755
--- a/Zend/zend_interfaces.c
+++ b/Zend/zend_interfaces.c
@@ -58,6 +58,7 @@ ZEND_API zval* zend_call_method(zval **object_pp, zend_class_entry *obj_ce, zend
/* no interest in caching and no information already present that is
* needed later inside zend_call_function. */
ZVAL_STRINGL(&z_fname, function_name, function_name_len, 0);
+ fci.function_table = !object_pp ? EG(function_table) : NULL;
result = zend_call_function(&fci, NULL TSRMLS_CC);
} else {
zend_fcall_info_cache fcic;