johannes Sun Nov 20 10:21:24 2005 EDT
Modified files:
/php-src/ext/spl php_spl.c
Log:
- Fix SPL class listing for phpinfo in unicode mode
http://cvs.php.net/diff.php/php-src/ext/spl/php_spl.c?r1=1.75&r2=1.76&ty=u
Index: php-src/ext/spl/php_spl.c
diff -u php-src/ext/spl/php_spl.c:1.75 php-src/ext/spl/php_spl.c:1.76
--- php-src/ext/spl/php_spl.c:1.75 Thu Nov 3 17:04:35 2005
+++ php-src/ext/spl/php_spl.c Sun Nov 20 10:21:23 2005
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_spl.c,v 1.75 2005/11/03 22:04:35 helly Exp $ */
+/* $Id: php_spl.c,v 1.76 2005/11/20 15:21:23 johannes Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -559,7 +559,7 @@
{
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;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php