mgdm Mon, 04 Oct 2010 20:20:30 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=304035
Log: Un-deprecate mt_rand and deprecate mt_getrandmax Changed paths: U php/php-src/trunk/ext/standard/basic_functions.c Modified: php/php-src/trunk/ext/standard/basic_functions.c =================================================================== --- php/php-src/trunk/ext/standard/basic_functions.c 2010-10-04 19:48:57 UTC (rev 304034) +++ php/php-src/trunk/ext/standard/basic_functions.c 2010-10-04 20:20:30 UTC (rev 304035) @@ -2830,9 +2830,9 @@ PHP_FE(rand, arginfo_rand) PHP_FE(srand, arginfo_srand) PHP_DEP_FE(getrandmax, arginfo_getrandmax) - PHP_DEP_FE(mt_rand, arginfo_mt_rand) + PHP_FE(mt_rand, arginfo_mt_rand) PHP_FE(mt_srand, arginfo_mt_srand) - PHP_FE(mt_getrandmax, arginfo_mt_getrandmax) + PHP_DEP_FE(mt_getrandmax, arginfo_mt_getrandmax) #if HAVE_GETSERVBYNAME PHP_FE(getservbyname, arginfo_getservbyname)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php