From 57deca0c8fc7ad402b161867c0b294f8a489c514 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johannes=20Schl=C3=BCter?= Date: Sun, 20 Nov 2005 15:21:23 +0000 Subject: [PATCH] - Fix SPL class listing for phpinfo in unicode mode --- ext/spl/php_spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/spl/php_spl.c b/ext/spl/php_spl.c index 955580b6cc..ce3948825e 100755 --- a/ext/spl/php_spl.c +++ b/ext/spl/php_spl.c @@ -559,7 +559,7 @@ int spl_build_class_list_string(zval **entry, char **list TSRMLS_DC) /* {{{ */ { char *res; - spprintf(&res, 0, "%s, %s", *list, Z_STRVAL_PP(entry)); + spprintf(&res, 0, "%s, %v", *list, Z_STRVAL_PP(entry)); efree(*list); *list = res; return ZEND_HASH_APPLY_KEEP; -- 2.40.0