From ad64c0f2d7829895c8ac9c2149cc1f90622260fc Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 23 Dec 2015 06:53:26 +0000 Subject: [PATCH] Docs: Properly mark the `$exclude_zeros` parameter in the DocBlock for `get_editable_user_ids()` as optional. Also fixes a couple of typos. See #32246. Built from https://develop.svn.wordpress.org/trunk@36070 git-svn-id: http://core.svn.wordpress.org/trunk@36035 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/deprecated.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/deprecated.php b/wp-admin/includes/deprecated.php index 81398cc05b..f7f7a5e685 100644 --- a/wp-admin/includes/deprecated.php +++ b/wp-admin/includes/deprecated.php @@ -266,9 +266,9 @@ function get_editable_authors( $user_id ) { * * @deprecated 3.1.0 Use get_users() * - * @param int $user_id User ID. - * @param bool $exclude_zeros Optional, default is true. Whether to exclude zeros. - * @return mixed + * @param int $user_id User ID. + * @param bool $exclude_zeros Optional. Whether to exclude zeroes. Default true. + * @return array Array of editable user IDs, empty array otherwise. */ function get_editable_user_ids( $user_id, $exclude_zeros = true, $post_type = 'post' ) { _deprecated_function( __FUNCTION__, '3.1', 'get_users()' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index dd414a6aff..6fe7786af0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36069'; +$wp_version = '4.5-alpha-36070'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.