Changeset 47153
- Timestamp:
- 02/01/2020 08:30:20 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-community-events.php
r47124 r47153 115 115 'api-error', 116 116 /* translators: %d: Numeric HTTP status code, e.g. 400, 403, 500, 504, etc. */ 117 sprintf( __( 'Invalid API response code (%d) ' ), $response_code )117 sprintf( __( 'Invalid API response code (%d).' ), $response_code ) 118 118 ); 119 119 } elseif ( ! isset( $response_body['location'], $response_body['events'] ) ) { -
trunk/src/wp-admin/includes/media.php
r47122 r47153 982 982 983 983 if ( ! $matches ) { 984 return new WP_Error( 'image_sideload_failed', __( 'Invalid image URL ' ) );984 return new WP_Error( 'image_sideload_failed', __( 'Invalid image URL.' ) ); 985 985 } 986 986 -
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.