Make WordPress Core


Ignore:
Timestamp:
12/13/2011 11:45:31 PM (13 years ago)
Author:
ryan
Message:

Use one space, not two, after trailing punctuation. fixes #19537

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/general-template.php

    r19528 r19593  
    20812081 * @param string $file Optional. Style handle name or file name (without ".css" extension) relative
    20822082 *   to wp-admin/. Defaults to 'wp-admin'.
    2083  * @param bool $force_echo Optional.  Force the stylesheet link to be printed rather than enqueued.
     2083 * @param bool $force_echo Optional. Force the stylesheet link to be printed rather than enqueued.
    20842084 */
    20852085function wp_admin_css( $file = 'wp-admin', $force_echo = false ) {
     
    20922092
    20932093    if ( $wp_styles->query( $handle ) ) {
    2094         if ( $force_echo || did_action( 'wp_print_styles' ) ) // we already printed the style queue.  Print this one immediately
     2094        if ( $force_echo || did_action( 'wp_print_styles' ) ) // we already printed the style queue. Print this one immediately
    20952095            wp_print_styles( $handle );
    20962096        else // Add to style queue
Note: See TracChangeset for help on using the changeset viewer.