count/sizeof had their arguments setup wrong (messup between Beta 1 and 2)

This commit is contained in:
Zeev Suraski 1999-08-06 15:34:51 +00:00
parent 37d7d08482
commit edabed5604

View file

@ -92,8 +92,8 @@ function_entry basic_functions[] = {
PHP_FE(uasort, first_arg_force_ref) PHP_FE(uasort, first_arg_force_ref)
PHP_FE(uksort, first_arg_force_ref) PHP_FE(uksort, first_arg_force_ref)
PHP_FE(array_walk, first_arg_force_ref) PHP_FE(array_walk, first_arg_force_ref)
PHP_FALIAS(sizeof, count, first_arg_force_ref) PHP_FALIAS(sizeof, count, first_arg_allow_ref)
PHP_FE(count, first_arg_force_ref) PHP_FE(count, first_arg_allow_ref)
PHP_FE(end, first_arg_force_ref) PHP_FE(end, first_arg_force_ref)
PHP_FE(prev, first_arg_force_ref) PHP_FE(prev, first_arg_force_ref)
PHP_FE(next, first_arg_force_ref) PHP_FE(next, first_arg_force_ref)