iliaa Sun Nov 12 17:23:01 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/standard array.c Log: removed bogus char http://cvs.php.net/viewvc.cgi/php-src/ext/standard/array.c?r1=1.308.2.21.2.16&r2=1.308.2.21.2.17&diff_format=u Index: php-src/ext/standard/array.c diff -u php-src/ext/standard/array.c:1.308.2.21.2.16 php-src/ext/standard/array.c:1.308.2.21.2.17 --- php-src/ext/standard/array.c:1.308.2.21.2.16 Sun Nov 12 17:13:22 2006 +++ php-src/ext/standard/array.c Sun Nov 12 17:23:01 2006 @@ -21,7 +21,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: array.c,v 1.308.2.21.2.16 2006/11/12 17:13:22 iliaa Exp $ */ +/* $Id: array.c,v 1.308.2.21.2.17 2006/11/12 17:23:01 iliaa Exp $ */ #include "php.h" #include "php_ini.h" @@ -2202,7 +2202,7 @@ /* Get the arguments and do error-checking */ argc = ZEND_NUM_ARGS(); if (argc < 2 || argc > 4 || zend_get_parameters_ex(argc, &input, &offset, &length, &z_preserve_keys)) { - WRONG_PARA¬M_COUNT; + WRONG_PARAM_COUNT; } if (Z_TYPE_PP(input) != IS_ARRAY) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php