From b04e2d56111dc6c5686333e2fdf5afd067ef050c Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 5 Apr 2015 15:50:53 +0000 Subject: [PATCH] Various docs syntax fixes in wp-includes/formatting.php. See #31888. git-svn-id: https://develop.svn.wordpress.org/trunk@32039 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/formatting.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php index 3460c10a11..7003f8d0dc 100644 --- a/src/wp-includes/formatting.php +++ b/src/wp-includes/formatting.php @@ -4134,7 +4134,7 @@ function print_emoji_detection_script() { * * @param string The emoji extension. Default .png. */ - 'ext' => apply_filters( 'emoji_ext', '.png' ), + 'ext' => apply_filters( 'emoji_ext', '.png' ), ); $version = 'ver=' . $wp_version; @@ -4344,10 +4344,10 @@ function _wp_staticize_emoji_for_email( $mail ) { continue; } - // Explode them out + // Explode them out. list( $name, $content ) = explode( ':', trim( $header ), 2 ); - // Cleanup crew + // Cleanup crew. $name = trim( $name ); $content = trim( $content ); @@ -4362,7 +4362,7 @@ function _wp_staticize_emoji_for_email( $mail ) { } } - // Set Content-Type if we don't have a content-type from the input headers + // Set Content-Type if we don't have a content-type from the input headers. if ( ! isset( $content_type ) ) { $content_type = 'text/plain'; }