diff --git a/wp-includes/class-wp-user.php b/wp-includes/class-wp-user.php index 328fb6a523..0b0bb1023a 100644 --- a/wp-includes/class-wp-user.php +++ b/wp-includes/class-wp-user.php @@ -91,13 +91,14 @@ class WP_User { * The filter context applied to user data fields. * * @since 2.9.0 - * @access private + * @access public * @var string */ - var $filter = null; + public $filter = null; /** * @static + * @since 3.3.0 * @access private * @var array */ @@ -159,6 +160,8 @@ class WP_User { /** * Sets up object properties, including capabilities. * + * @since 3.3.0 + * * @param object $data User DB row object. * @param int $blog_id Optional. The site ID to initialize for. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index e9fa291415..a0d5d99442 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-39734'; +$wp_version = '4.8-alpha-39735'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.