Users: Correct the default value in `setup_userdata()`.

The `$for_user_id` parameter is an `int`, not a `string`, so the default value should be `0`, rather than an empty string.

Props subrataemfluence.
Fixes #44697.



git-svn-id: https://develop.svn.wordpress.org/trunk@44603 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast 2019-01-15 06:32:21 +00:00
parent 0393473016
commit 3a6ffa1d18
1 changed files with 3 additions and 3 deletions

View File

@ -1005,12 +1005,12 @@ 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. User ID to set up global data.
* @param int $for_user_id Optional. Default 0. User ID to set up global data.
*/
function setup_userdata( $for_user_id = '' ) {
function setup_userdata( $for_user_id = 0 ) {
global $user_login, $userdata, $user_level, $user_ID, $user_email, $user_url, $user_identity;
if ( '' == $for_user_id ) {
if ( ! $for_user_id ) {
$for_user_id = get_current_user_id();
}
$user = get_userdata( $for_user_id );