felipe Wed Oct 29 13:01:44 2008 UTC Modified files: /php-src/ext/reflection php_reflection.c Log: - Fixed char formatter http://cvs.php.net/viewvc.cgi/php-src/ext/reflection/php_reflection.c?r1=1.321&r2=1.322&diff_format=u Index: php-src/ext/reflection/php_reflection.c diff -u php-src/ext/reflection/php_reflection.c:1.321 php-src/ext/reflection/php_reflection.c:1.322 --- php-src/ext/reflection/php_reflection.c:1.321 Wed Oct 29 12:41:22 2008 +++ php-src/ext/reflection/php_reflection.c Wed Oct 29 13:01:44 2008 @@ -20,7 +20,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_reflection.c,v 1.321 2008/10/29 12:41:22 felipe Exp $ */ +/* $Id: php_reflection.c,v 1.322 2008/10/29 13:01:44 felipe Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -4295,7 +4295,7 @@ } } 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; } } @@ -5429,7 +5429,7 @@ php_info_print_table_start(); php_info_print_table_header(2, "Reflection", "enabled"); - php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.321 2008/10/29 12:41:22 felipe Exp $"); + php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.322 2008/10/29 13:01:44 felipe Exp $"); php_info_print_table_end(); } /* }}} */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php