From fa5d6496f532e370b563115eb224ea035b0a80ee Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Wed, 29 Oct 2008 13:01:44 +0000 Subject: [PATCH] - Fixed char formatter --- 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 698542be4c..8fd7be3121 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -4295,7 +4295,7 @@ ZEND_METHOD(reflection_property, __construct) } } if (dynam_prop == 0) { - zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Property %s::$%v does not exist", ce->name, name_str); + zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Property %v::$%v does not exist", ce->name, name_str); return; } } -- 2.50.1