From 5937e2b23e2705138a425b732b08b8660263669f Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 26 Feb 2016 08:56:26 +0000 Subject: [PATCH] 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 --- wp-includes/ms-deprecated.php | 2 ++ wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/ms-deprecated.php b/wp-includes/ms-deprecated.php index 23add67cee..33b544ff7d 100644 --- a/wp-includes/ms-deprecated.php +++ b/wp-includes/ms-deprecated.php @@ -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()' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index db95c77617..e5c7f306ba 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.