mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 15:08:10 +01:00
Rather than removing the 3rd argument in WP_Object_Cache::delete()
, mark it as $deprecated
.
See [27064]. Props SergeyBiryukov. Fixes #22478. Built from https://develop.svn.wordpress.org/trunk@27162 git-svn-id: http://core.svn.wordpress.org/trunk@27028 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f307aa1eb8
commit
2efcdcf297
@ -389,17 +389,16 @@ class WP_Object_Cache {
|
|||||||
* Remove the contents of the cache key in the group
|
* Remove the contents of the cache key in the group
|
||||||
*
|
*
|
||||||
* If the cache key does not exist in the group, then nothing will happen.
|
* If the cache key does not exist in the group, then nothing will happen.
|
||||||
* There used to be a 3rd param (bool $force Optional. Whether to
|
|
||||||
* force the unsetting of the cache key in the group).
|
|
||||||
*
|
*
|
||||||
* @since 2.0.0
|
* @since 2.0.0
|
||||||
*
|
*
|
||||||
* @param int|string $key What the contents in the cache are called
|
* @param int|string $key What the contents in the cache are called
|
||||||
* @param string $group Where the cache contents are grouped
|
* @param string $group Where the cache contents are grouped
|
||||||
|
* @param bool $deprecated Deprecated.
|
||||||
*
|
*
|
||||||
* @return bool False if the contents weren't deleted and true on success
|
* @return bool False if the contents weren't deleted and true on success
|
||||||
*/
|
*/
|
||||||
function delete( $key, $group = 'default' ) {
|
function delete( $key, $group = 'default', $deprecated = false ) {
|
||||||
if ( empty( $group ) )
|
if ( empty( $group ) )
|
||||||
$group = 'default';
|
$group = 'default';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user