Make WordPress Core


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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/screen.php

    r19563 r19593  
    209209final class WP_Screen {
    210210    /**
    211      * Any action associated with the screen. 'add' for *-add.php and *-new.php screens.  Empty otherwise.
     211     * Any action associated with the screen. 'add' for *-add.php and *-new.php screens. Empty otherwise.
    212212     *
    213213     * @since 3.3.0
     
    218218
    219219    /**
    220      * The base type of the screen.  This is typically the same as $id but with any post types and taxonomies stripped.
     220     * The base type of the screen. This is typically the same as $id but with any post types and taxonomies stripped.
    221221     * For example, for an $id of 'edit-post' the base is 'edit'.
    222222     *
     
    540540     * @since 3.3.0
    541541     *
    542      * @param string $parent_file The parent file of the screen.  Typically the $parent_file global.
     542     * @param string $parent_file The parent file of the screen. Typically the $parent_file global.
    543543     */
    544544    function set_parentage( $parent_file ) {
     
    810810                        }
    811811                        echo '<label for="wp_welcome_panel-hide">';
    812                         echo '<input type="checkbox" id="wp_welcome_panel-hide"' . checked( (bool) $welcome_checked, true, false )  . ' />';
     812                        echo '<input type="checkbox" id="wp_welcome_panel-hide"' . checked( (bool) $welcome_checked, true, false ) . ' />';
    813813                        echo __( 'Welcome' ) . "</label>\n";
    814814                    }
Note: See TracChangeset for help on using the changeset viewer.