diff options
author | Dmitry Stogov <dmitry@php.net> | 2008-07-26 13:14:04 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2008-07-26 13:14:04 +0000 |
commit | af05ce0af6d35e668de297fc4961fa738272f13c (patch) | |
tree | 32d1f47915557308aa7e2f9212abb3a572b4b207 /ext/reflection/php_reflection.c | |
parent | 77baec3f6d57f2d37e89aceb758c6adf6a9538f6 (diff) | |
download | php-git-af05ce0af6d35e668de297fc4961fa738272f13c.tar.gz |
Fixed is_callable/call_user_func mess that had done different things for very similar arguments e.g. array("A","B") and "A::B"
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 44b81cd1c3..34eba20390 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -1258,7 +1258,7 @@ static void _reflection_export(INTERNAL_FUNCTION_PARAMETERS, zend_class_entry *c params[0] = &reflector_ptr; params[1] = &output_ptr; - ZVAL_STRINGL(&fname, "export", sizeof("export") - 1, 0); + ZVAL_STRINGL(&fname, "reflection::export", sizeof("reflection::export") - 1, 0); fci.function_table = &reflection_ptr->function_table; fci.function_name = &fname; fci.object_pp = NULL; |