diff options
Diffstat (limited to 'ext/reflection')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 | ||||
-rwxr-xr-x | ext/reflection/tests/020.phpt | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 9589307f04..1a2f2a4bbc 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -3533,7 +3533,7 @@ ZEND_METHOD(reflection_class, hasProperty) if (intern->obj && Z_OBJ_HANDLER_P(intern->obj, has_property)) { MAKE_STD_ZVAL(property); ZVAL_STRINGL(property, name, name_len, 1); - if (Z_OBJ_HANDLER_P(intern->obj, has_property)(intern->obj, property, 0 TSRMLS_CC)) { + if (Z_OBJ_HANDLER_P(intern->obj, has_property)(intern->obj, property, 2 TSRMLS_CC)) { zval_ptr_dtor(&property); RETURN_TRUE; } diff --git a/ext/reflection/tests/020.phpt b/ext/reflection/tests/020.phpt index 04cc6a1155..c5b0ae5c2a 100755 --- a/ext/reflection/tests/020.phpt +++ b/ext/reflection/tests/020.phpt @@ -24,5 +24,4 @@ var_dump($obj->hasProperty("p4")); bool(true) bool(true) bool(true) -string(2) "p4" bool(false) |