From 35742a74e230a3ccee2badc43de7ee5a348fe9cb Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Sun, 2 Mar 2014 21:42:21 +0800 Subject: [PATCH] Fixed zend_string --- ext/reflection/php_reflection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1