Make WordPress Core

Changeset 32039


Ignore:
Timestamp:
04/05/2015 03:50:53 PM (10 years ago)
Author:
DrewAPicture
Message:

Various docs syntax fixes in wp-includes/formatting.php.

See #31888.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/formatting.php

    r31977 r32039  
    41354135         * @param string The emoji extension. Default .png.
    41364136         */
    4137         'ext'     => apply_filters( 'emoji_ext', '.png' ),
     4137        'ext' => apply_filters( 'emoji_ext', '.png' ),
    41384138    );
    41394139
     
    43454345        }
    43464346
    4347         // Explode them out
     4347        // Explode them out.
    43484348        list( $name, $content ) = explode( ':', trim( $header ), 2 );
    43494349
    4350         // Cleanup crew
     4350        // Cleanup crew.
    43514351        $name    = trim( $name    );
    43524352        $content = trim( $content );
     
    43634363    }
    43644364
    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.
    43664366    if ( ! isset( $content_type ) ) {
    43674367        $content_type = 'text/plain';
Note: See TracChangeset for help on using the changeset viewer.