From bf371f15772b71e352b0986031a6b646baa51adb Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Thu, 20 Aug 2015 22:39:24 +0000 Subject: [PATCH] Docs: Standardize `@deprecated` tag formatting in the DocBlock for `WP_Object_Cache:reset()`. Props Alphawolf. See #28806. Built from https://develop.svn.wordpress.org/trunk@33678 git-svn-id: http://core.svn.wordpress.org/trunk@33645 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/cache.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/cache.php b/wp-includes/cache.php index d89ac7416c..3da0746fc4 100644 --- a/wp-includes/cache.php +++ b/wp-includes/cache.php @@ -592,7 +592,8 @@ class WP_Object_Cache { * Reset keys * * @since 3.0.0 - * @deprecated 3.5.0 + * @deprecated 3.5.0 Use switch_to_blog() + * @see switch_to_blog() */ public function reset() { _deprecated_function( __FUNCTION__, '3.5', 'switch_to_blog()' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index fd52eb1439..35d2a6ad57 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33677'; +$wp_version = '4.4-alpha-33678'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.