johannes Fri Feb 24 23:10:53 2006 UTC
Modified files:
/php-src/ext/reflection php_reflection.c
Log:
- We need %v here
http://cvs.php.net/viewcvs.cgi/php-src/ext/reflection/php_reflection.c?r1=1.222&r2=1.223&diff_format=u
Index: php-src/ext/reflection/php_reflection.c
diff -u php-src/ext/reflection/php_reflection.c:1.222
php-src/ext/reflection/php_reflection.c:1.223
--- php-src/ext/reflection/php_reflection.c:1.222 Fri Feb 24 23:08:36 2006
+++ php-src/ext/reflection/php_reflection.c Fri Feb 24 23:10:53 2006
@@ -20,7 +20,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_reflection.c,v 1.222 2006/02/24 23:08:36 johannes Exp $ */
+/* $Id: php_reflection.c,v 1.223 2006/02/24 23:10:53 johannes Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -533,7 +533,7 @@
/* {{{ _const_string */
static void _const_string(string *str, char *name, zval *value, char *indent
TSRMLS_DC)
{
- string_printf(str, "%s Constant [ %s %s ] { }\n",
+ string_printf(str, "%s Constant [ %s %v ] { }\n",
indent,
zend_zval_type_name(value),
name);
@@ -4500,7 +4500,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.222
2006/02/24 23:08:36 johannes Exp $");
+ php_info_print_table_row(2, "Version", "$Id: php_reflection.c,v 1.223
2006/02/24 23:10:53 johannes Exp $");
php_info_print_table_end();
} /* }}} */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php