Docs: Add a missing `@param` entry for the `$user_login` parameter in the DocBlock for the deprecated `is_site_admin()` function.
See #32246. Built from https://develop.svn.wordpress.org/trunk@36724 git-svn-id: http://core.svn.wordpress.org/trunk@36691 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0f27954363
commit
5937e2b23e
|
@ -57,6 +57,8 @@ function generate_random_password( $len = 8 ) {
|
|||
* @since MU
|
||||
* @deprecated 3.0.0 Use is_super_admin()
|
||||
* @see is_super_admin()
|
||||
*
|
||||
* @param string $user_login Optional. Username for the user to check. Default empty.
|
||||
*/
|
||||
function is_site_admin( $user_login = '' ) {
|
||||
_deprecated_function( __FUNCTION__, '3.0', 'is_super_admin()' );
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.5-beta1-36723';
|
||||
$wp_version = '4.5-beta1-36724';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue