Changeset 27162
- Timestamp:
- 02/11/2014 04:40:30 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cache.php
r27064 r27162 390 390 * 391 391 * If the cache key does not exist in the group, then nothing will happen. 392 * There used to be a 3rd param (bool $force Optional. Whether to393 * force the unsetting of the cache key in the group).394 392 * 395 393 * @since 2.0.0 … … 397 395 * @param int|string $key What the contents in the cache are called 398 396 * @param string $group Where the cache contents are grouped 397 * @param bool $deprecated Deprecated. 399 398 * 400 399 * @return bool False if the contents weren't deleted and true on success 401 400 */ 402 function delete( $key, $group = 'default' ) {401 function delete( $key, $group = 'default', $deprecated = false ) { 403 402 if ( empty( $group ) ) 404 403 $group = 'default';
Note: See TracChangeset
for help on using the changeset viewer.