diff --git src/wp-includes/functions.php src/wp-includes/functions.php
index 966dcd8..eea755f 100644
|
|
|
|
| 5113 | 5113 | * @since 3.4.0 |
| 5114 | 5114 | * @access private |
| 5115 | 5115 | * |
| 5116 | | * @param array $object_ids ID list. |
| 5117 | | * @param string $cache_key The cache bucket to check against. |
| | 5116 | * @param array $object_ids ID list. |
| | 5117 | * @param string $cache_group The cache group to check against. |
| 5118 | 5118 | * |
| 5119 | 5119 | * @return array List of ids not present in the cache. |
| 5120 | 5120 | */ |
| 5121 | | function _get_non_cached_ids( $object_ids, $cache_key ) { |
| | 5121 | function _get_non_cached_ids( $object_ids, $cache_group ) { |
| 5122 | 5122 | $clean = array(); |
| 5123 | 5123 | foreach ( $object_ids as $id ) { |
| 5124 | 5124 | $id = (int) $id; |
| 5125 | | if ( !wp_cache_get( $id, $cache_key ) ) { |
| | 5125 | if ( !wp_cache_get( $id, $cache_group ) ) { |
| 5126 | 5126 | $clean[] = $id; |
| 5127 | 5127 | } |
| 5128 | 5128 | } |