Changeset 45639 for trunk/src/wp-includes/meta.php
- Timestamp:
- 07/15/2019 06:24:08 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/meta.php
r45590 r45639 524 524 if ( ! $meta_cache ) { 525 525 $meta_cache = update_meta_cache( $meta_type, array( $object_id ) ); 526 $meta_cache = $meta_cache[ $object_id ]; 526 if ( isset( $meta_cache[ $object_id ] ) ) { 527 $meta_cache = $meta_cache[ $object_id ]; 528 } else { 529 $meta_cache = null; 530 } 527 531 } 528 532
Note: See TracChangeset
for help on using the changeset viewer.