summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2009-11-11 18:52:12 +0000
committerFelipe Pena <felipe@php.net>2009-11-11 18:52:12 +0000
commiteea23b2794eb71231f2dce1c774b64c9bd2ec41c (patch)
tree2219ca8a81dcfcf14f7b05c4d08ff1d4f41f3c2b
parent34bd384898d4e6c6dd9658881e89a12ce07a3f8b (diff)
downloadphp-git-eea23b2794eb71231f2dce1c774b64c9bd2ec41c.tar.gz
- Fixed bug #50152 (ReflectionClass::hasProperty hehaves like isset() not property_exists)
[5_2 is OK]
-rw-r--r--NEWS2
-rw-r--r--ext/reflection/php_reflection.c2
-rwxr-xr-xext/reflection/tests/020.phpt1
3 files changed, 3 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 75df7ae16c..c1de96b643 100644
--- a/NEWS
+++ b/NEWS
@@ -20,6 +20,8 @@ PHP NEWS
- Fixed memory leak in extension loading when an error occurs on Windows.
(Pierre)
+- Fixed bug #50152 (ReflectionClass::hasProperty hehaves like isset() not
+ property_exists). (Felipe)
- Fixed bug #50073 (parse_url() incorrect when ? in fragment). (Ilia)
- Fixed bug #50023 (pdo_mysql doesn't use PHP_MYSQL_UNIX_SOCK_ADDR). (Ilia)
- Fixed bug #49908 (throwing exception in __autoload crashes when interface
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)