From: Xinchen Hui Date: Sun, 2 Mar 2014 13:42:21 +0000 (+0800) Subject: Fixed zend_string X-Git-Tag: POST_PHPNG_MERGE~412^2~458 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35742a74e230a3ccee2badc43de7ee5a348fe9cb;p=php Fixed zend_string --- diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index f1db730c8a..8111de92f7 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -3462,7 +3462,7 @@ ZEND_METHOD(reflection_class, setStaticPropertyValue) variable_ptr = zend_std_get_static_property(ce, name, 1, NULL TSRMLS_CC); if (!variable_ptr) { zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, - "Class %s does not have a property named %s", ce->name->val, name); + "Class %s does not have a property named %s", ce->name->val, name->val); return; } //??? refcount = Z_REFCOUNT_PP(variable_ptr);