2010-01-06 21:22:51 -05:00
|
|
|
<?php
|
2010-01-07 02:32:44 -05:00
|
|
|
/**
|
|
|
|
* Deprecated functions from WordPress MU and the multisite feature. You shouldn't
|
|
|
|
* use these functions and look for the alternatives instead. The functions will be
|
|
|
|
* removed in a later version.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Deprecated
|
|
|
|
*/
|
2010-01-06 21:22:51 -05:00
|
|
|
|
2010-01-07 02:32:44 -05:00
|
|
|
/*
|
|
|
|
* Deprecated functions come here to die.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since unknown
|
|
|
|
* @deprecated 3.0
|
|
|
|
* @deprecated Use wp_generate_password()
|
|
|
|
* @see wp_generate_password()
|
|
|
|
*/
|
2010-01-06 21:22:51 -05:00
|
|
|
function generate_random_password( $len = 8 ) {
|
2010-01-07 02:32:44 -05:00
|
|
|
_deprecated_function( __FUNCTION__, '3.0', 'wp_generate_password()' );
|
|
|
|
return wp_generate_password($len);
|
2010-01-06 21:22:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|