From b4a1b39a9534f1fc6fb16b5363553a37d06606c0 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 29 Jun 2016 19:29:28 +0000 Subject: [PATCH] Docs: Add changelog entries to the DocBlocks for the `$blog_id` and `$site_id` properties in `WP_Site`. See [37657] for where access was explicitly changed from public to private. See #36717. Built from https://develop.svn.wordpress.org/trunk@37917 git-svn-id: http://core.svn.wordpress.org/trunk@37858 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-site.php | 4 ++++ wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-site.php b/wp-includes/class-wp-site.php index b39d645dbd..4aac6c1030 100644 --- a/wp-includes/class-wp-site.php +++ b/wp-includes/class-wp-site.php @@ -26,6 +26,8 @@ final class WP_Site { * A numeric string, for compatibility reasons. * * @since 4.5.0 + * @since 4.6.0 Converted from public to private to explicitly enable more intuitive + * access via magic methods. * @access private * @var string */ @@ -58,6 +60,8 @@ final class WP_Site { * A numeric string, for compatibility reasons. * * @since 4.5.0 + * @since 4.6.0 Converted from public to private to explicitly enable more intuitive + * access via magic methods. * @access private * @var string */ diff --git a/wp-includes/version.php b/wp-includes/version.php index 68d51d2f95..7ca026306c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37916'; +$wp_version = '4.6-alpha-37917'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.