Changeset 47153 for trunk/src/wp-includes/class-wp-metadata-lazyloader.php
- Timestamp:
- 02/01/2020 08:30:20 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-metadata-lazyloader.php
r46586 r47153 75 75 public function queue_objects( $object_type, $object_ids ) { 76 76 if ( ! isset( $this->settings[ $object_type ] ) ) { 77 return new WP_Error( 'invalid_object_type', __( 'Invalid object type ' ) );77 return new WP_Error( 'invalid_object_type', __( 'Invalid object type.' ) ); 78 78 } 79 79 … … 115 115 public function reset_queue( $object_type ) { 116 116 if ( ! isset( $this->settings[ $object_type ] ) ) { 117 return new WP_Error( 'invalid_object_type', __( 'Invalid object type ' ) );117 return new WP_Error( 'invalid_object_type', __( 'Invalid object type.' ) ); 118 118 } 119 119
Note: See TracChangeset
for help on using the changeset viewer.