Changeset 32039
- Timestamp:
- 04/05/2015 03:50:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r31977 r32039 4135 4135 * @param string The emoji extension. Default .png. 4136 4136 */ 4137 'ext' 4137 'ext' => apply_filters( 'emoji_ext', '.png' ), 4138 4138 ); 4139 4139 … … 4345 4345 } 4346 4346 4347 // Explode them out 4347 // Explode them out. 4348 4348 list( $name, $content ) = explode( ':', trim( $header ), 2 ); 4349 4349 4350 // Cleanup crew 4350 // Cleanup crew. 4351 4351 $name = trim( $name ); 4352 4352 $content = trim( $content ); … … 4363 4363 } 4364 4364 4365 // Set Content-Type if we don't have a content-type from the input headers 4365 // Set Content-Type if we don't have a content-type from the input headers. 4366 4366 if ( ! isset( $content_type ) ) { 4367 4367 $content_type = 'text/plain';
Note: See TracChangeset
for help on using the changeset viewer.