Docs: Add a missing @param entry for the $len parameter in the DocBlock for the deprecated generate_random_password() function.

See #32246.

Built from https://develop.svn.wordpress.org/trunk@36723


git-svn-id: http://core.svn.wordpress.org/trunk@36690 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-02-26 08:54:26 +00:00
parent e3f4059742
commit 0f27954363
2 changed files with 3 additions and 1 deletions

View File

@ -37,6 +37,8 @@ function get_dashboard_blog() {
* @since MU
* @deprecated 3.0.0 Use wp_generate_password()
* @see wp_generate_password()
*
* @param int $len Optional. The length of password to generate. Default 8.
*/
function generate_random_password( $len = 8 ) {
_deprecated_function( __FUNCTION__, '3.0', 'wp_generate_password()' );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-beta1-36722';
$wp_version = '4.5-beta1-36723';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.