Changeset 52772 for trunk/src/wp-includes/cache-compat.php
- Timestamp:
- 02/18/2022 12:04:52 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cache-compat.php
r52708 r52772 124 124 } 125 125 endif; 126 127 if ( ! function_exists( 'wp_cache_flush_runtime' ) ) : 128 /** 129 * Removes all cache items from the in-memory runtime cache. 130 * 131 * Compat function to mimic wp_cache_flush_runtime(). 132 * 133 * @ignore 134 * @since 6.0.0 135 * 136 * @see wp_cache_flush_runtime() 137 * 138 * @return bool True on success, false on failure. 139 */ 140 function wp_cache_flush_runtime() { 141 return wp_using_ext_object_cache() ? false : wp_cache_flush(); 142 } 143 endif;
Note: See TracChangeset
for help on using the changeset viewer.