diff options
author | Drew Jaynes <drewapicture@git.wordpress.org> | 2015-09-16 09:41:51 +0000 |
---|---|---|
committer | Drew Jaynes <drewapicture@git.wordpress.org> | 2015-09-16 09:41:51 +0000 |
commit | 1075ec80b83c2dd4d9bfecff3bbdc8b9ca538628 (patch) | |
tree | 133a6e9cb1031604ade1e7ecea765211f1ac3d14 /src | |
parent | 741bd4440c7651a06858e850b87724988a60708d (diff) | |
download | wordpress-1075ec80b83c2dd4d9bfecff3bbdc8b9ca538628.tar.gz wordpress-1075ec80b83c2dd4d9bfecff3bbdc8b9ca538628.zip |
Docs: Remove an errant change made to a `_deprecated_function()` call in `wp_cache_reset()` introduced in [34225].
See #32246.
git-svn-id: https://develop.svn.wordpress.org/trunk@34226 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'src')
-rw-r--r-- | src/wp-includes/cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wp-includes/cache.php b/src/wp-includes/cache.php index a18d24afea..4c07873e9c 100644 --- a/src/wp-includes/cache.php +++ b/src/wp-includes/cache.php @@ -264,7 +264,7 @@ function wp_cache_add_non_persistent_groups( $groups ) { * @global WP_Object_Cache $wp_object_cache Object cache global instance. */ function wp_cache_reset() { - _deprecated_function( __FUNCTION__, '3.5', 'wp_cache_switch_to_blog()' ); + _deprecated_function( __FUNCTION__, '3.5' ); global $wp_object_cache; |