]> granicus.if.org Git - php/commitdiff
- Fixed char formatter
authorFelipe Pena <felipe@php.net>
Wed, 29 Oct 2008 13:01:44 +0000 (13:01 +0000)
committerFelipe Pena <felipe@php.net>
Wed, 29 Oct 2008 13:01:44 +0000 (13:01 +0000)
ext/reflection/php_reflection.c

index 698542be4c6eddaa080050981bdd6348cc3b4671..8fd7be3121b6e6a80b0e62191033141df979d07e 100644 (file)
@@ -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;
                }
        }