helly Tue Dec 19 22:31:26 2006 UTC Modified files: /php-src/ext/spl php_spl.c Log: - Use new 'x' parameter parsing http://cvs.php.net/viewvc.cgi/php-src/ext/spl/php_spl.c?r1=1.102&r2=1.103&diff_format=u Index: php-src/ext/spl/php_spl.c diff -u php-src/ext/spl/php_spl.c:1.102 php-src/ext/spl/php_spl.c:1.103 --- php-src/ext/spl/php_spl.c:1.102 Tue Dec 19 22:30:59 2006 +++ php-src/ext/spl/php_spl.c Tue Dec 19 22:31:26 2006 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_spl.c,v 1.102 2006/12/19 22:30:59 helly Exp $ */ +/* $Id: php_spl.c,v 1.103 2006/12/19 22:31:26 helly Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -357,7 +357,7 @@ HashPosition function_pos; autoload_func_info *alfi; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, UG(unicode) ? "u" : "s", &class_name, &class_name_len) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "x", &class_name, &class_name_len) == FAILURE) { return; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php