From c062e39ac8d3fe47f81081798eef4b35e9e20204 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Tue, 15 Jan 2019 10:29:50 +0000 Subject: [PATCH] Docs: Tweak the docblock for `setup_userdata()`. This is a followup to [44603]. The default value should be last, not somewhere in the middle. Props swissspidy. Fixes #44697. Built from https://develop.svn.wordpress.org/trunk@44605 git-svn-id: http://core.svn.wordpress.org/trunk@44436 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index 8bc44ae233..f30d77cbe8 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -1005,7 +1005,7 @@ function count_users( $strategy = 'time', $site_id = null ) { * @global string $user_url The url in the user's profile * @global string $user_identity The display name of the user * - * @param int $for_user_id Optional. Default 0. User ID to set up global data. + * @param int $for_user_id Optional. User ID to set up global data. Default 0. */ function setup_userdata( $for_user_id = 0 ) { global $user_login, $userdata, $user_level, $user_ID, $user_email, $user_url, $user_identity; diff --git a/wp-includes/version.php b/wp-includes/version.php index 1ad1669592..6995b9f6f7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.1-beta1-44604'; +$wp_version = '5.1-beta1-44605'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.