summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2018-08-14 13:01:50 +0800
committerXinchen Hui <laruence@gmail.com>2018-08-14 13:01:50 +0800
commit78d823d9c3a5854ff200fbce18dcebbaa5f71065 (patch)
treee7a1c9d61fc778fd4ee825ab15671cdef040ec1c
parentdcd4b321859cdf494cb85ac937ad6339121a8c29 (diff)
downloadphp-git-78d823d9c3a5854ff200fbce18dcebbaa5f71065.tar.gz
Fixed zend_read_static_property
-rw-r--r--Zend/zend_API.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c
index d1288326ea..87d6272980 100644
--- a/Zend/zend_API.c
+++ b/Zend/zend_API.c
@@ -4193,7 +4193,7 @@ ZEND_API zval *zend_read_static_property_ex(zend_class_entry *scope, zend_string
ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, size_t name_length, zend_bool silent) /* {{{ */
{
zend_string *key = zend_string_init(name, name_length, 0);
- zval *property = zend_std_get_static_property(scope, key, silent);
+ zval *property = zend_read_static_property_ex(scope, key, silent);
zend_string_efree(key);
return property;
}