Make WordPress Core

Changeset 19599


Ignore:
Timestamp:
12/16/2011 05:13:16 PM (13 years ago)
Author:
ryan
Message:

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

Location:
trunk/wp-content/themes
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentyeleven/header.php

    r18335 r19599  
    112112            <nav id="access" role="navigation">
    113113                <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3>
    114                 <?php /*  Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
     114                <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
    115115                <div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></a></div>
    116116                <div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to secondary content', 'twentyeleven' ); ?></a></div>
    117                 <?php /* Our navigation menu.  If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
     117                <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
    118118                <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
    119119            </nav><!-- #access -->
  • trunk/wp-content/themes/twentyten/comments.php

    r15145 r19599  
    44 *
    55 * The area of the page that contains both current comments
    6  * and the comment form.  The actual display of comments is
     6 * and the comment form. The actual display of comments is
    77 * handled by a callback to twentyten_comment which is
    88 * located in the functions.php file.
  • trunk/wp-content/themes/twentyten/footer.php

    r16480 r19599  
    44 *
    55 * Contains the closing of the id=main div and all content
    6  * after.  Calls sidebar-footer.php for bottom widgets.
     6 * after. Calls sidebar-footer.php for bottom widgets.
    77 *
    88 * @package WordPress
  • trunk/wp-content/themes/twentyten/header.php

    r17300 r19599  
    8080
    8181            <div id="access" role="navigation">
    82               <?php /*  Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
     82              <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
    8383                <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
    84                 <?php /* Our navigation menu.  If one isn't filled out, wp_nav_menu falls back to wp_page_menu.  The menu assiged to the primary position is the one used.  If none is assigned, the menu with the lowest ID is used. */ ?>
     84                <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
    8585                <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
    8686            </div><!-- #access -->
  • trunk/wp-content/themes/twentyten/loop-attachment.php

    r19582 r19599  
    33 * The loop that displays an attachment.
    44 *
    5  * The loop displays the posts and the post content.  See
     5 * The loop displays the posts and the post content. See
    66 * http://codex.wordpress.org/The_Loop to understand it and
    77 * http://codex.wordpress.org/Template_Tags to understand
  • trunk/wp-content/themes/twentyten/loop-page.php

    r15762 r19599  
    33 * The loop that displays a page.
    44 *
    5  * The loop displays the posts and the post content.  See
     5 * The loop displays the posts and the post content. See
    66 * http://codex.wordpress.org/The_Loop to understand it and
    77 * http://codex.wordpress.org/Template_Tags to understand
  • trunk/wp-content/themes/twentyten/loop-single.php

    r19582 r19599  
    33 * The loop that displays a single post.
    44 *
    5  * The loop displays the posts and the post content.  See
     5 * The loop displays the posts and the post content. See
    66 * http://codex.wordpress.org/The_Loop to understand it and
    77 * http://codex.wordpress.org/Template_Tags to understand
  • trunk/wp-content/themes/twentyten/loop.php

    r17469 r19599  
    33 * The loop that displays posts.
    44 *
    5  * The loop displays the posts and the post content.  See
     5 * The loop displays the posts and the post content. See
    66 * http://codex.wordpress.org/The_Loop to understand it and
    77 * http://codex.wordpress.org/Template_Tags to understand
Note: See TracChangeset for help on using the changeset viewer.