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-includes/comment.php

    r18907 r19593  
    686686
    687687            if ( defined('DOING_AJAX') )
    688                 die( __('You are posting comments too quickly.  Slow down.') );
    689 
    690             wp_die( __('You are posting comments too quickly.  Slow down.'), '', array('response' => 403) );
     688                die( __('You are posting comments too quickly. Slow down.') );
     689
     690            wp_die( __('You are posting comments too quickly. Slow down.'), '', array('response' => 403) );
    691691        }
    692692    }
     
    724724 * @uses Walker_Comment
    725725 *
    726  * @param array $comments Optional array of comment objects.  Defaults to $wp_query->comments
     726 * @param array $comments Optional array of comment objects. Defaults to $wp_query->comments
    727727 * @param int $per_page Optional comments per page.
    728728 * @param boolean $threaded Optional control over flat or threaded comments.
     
    19481948
    19491949/**
    1950  * Close comments on old posts on the fly, without any extra DB queries.  Hooked to the_posts.
     1950 * Close comments on old posts on the fly, without any extra DB queries. Hooked to the_posts.
    19511951 *
    19521952 * @access private
     
    19781978
    19791979/**
    1980  * Close comments on an old post.  Hooked to comments_open and pings_open.
     1980 * Close comments on an old post. Hooked to comments_open and pings_open.
    19811981 *
    19821982 * @access private
Note: See TracChangeset for help on using the changeset viewer.