diff options
author | Marcus Boerger <helly@php.net> | 2003-09-01 15:09:57 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-09-01 15:09:57 +0000 |
commit | a389286b99709d24cc7daa2ae7958c0082ab3da2 (patch) | |
tree | e054970b59aceb0d39d87d7797660229c1815b8e /ext/reflection/php_reflection.c | |
parent | c7f1c2f74f9b95765068d2d383c0c30419e09c9b (diff) | |
download | php-git-a389286b99709d24cc7daa2ae7958c0082ab3da2.tar.gz |
Set the params in the struct
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 3629b582ab..72d96cc936 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -871,6 +871,7 @@ ZEND_METHOD(reflection_function, invoke) fci.object_pp = NULL; fci.retval_ptr_ptr = &retval_ptr; fci.param_count = argc; + fci.params = params; fci.no_separation = 1; fcc.initialized = 1; @@ -1411,6 +1412,7 @@ ZEND_METHOD(reflection_method, getdeclaringclass) reflection_class_factory(mptr->common.scope, return_value TSRMLS_CC); } +/* }}} */ /* {{{ proto public Reflection_Class::__construct(mixed argument) throws Exception Constructor. Takes a string or an instance as an argument */ |