diff --git a/wp-admin/includes/deprecated.php b/wp-admin/includes/deprecated.php index da725f8ccd..75c0ed3d87 100644 --- a/wp-admin/includes/deprecated.php +++ b/wp-admin/includes/deprecated.php @@ -497,7 +497,7 @@ class WP_User_Search { $this->search_term = wp_unslash( $search_term ); $this->raw_page = ( '' == $page ) ? false : (int) $page; - $this->page = (int) ( '' == $page ) ? 1 : $page; + $this->page = ( '' == $page ) ? 1 : (int) $page; $this->role = $role; $this->prepare_query(); diff --git a/wp-includes/version.php b/wp-includes/version.php index 11c4c93c12..7af6b061a5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50562'; +$wp_version = '5.8-alpha-50563'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.