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/post.php

    r19448 r19593  
    12601260        return $translated;
    12611261
    1262     // Only store one autosave.  If there is already an autosave, overwrite it.
     1262    // Only store one autosave. If there is already an autosave, overwrite it.
    12631263    if ( $old_autosave = wp_get_post_autosave( $post_id ) ) {
    12641264        $new_autosave = _wp_post_revision_fields( $_POST, true );
     
    13211321    if ( 'draft' == $post->post_status ) {
    13221322        $id = edit_post();
    1323     } else { // Non drafts are not overwritten.  The autosave is stored in a special post revision.
     1323    } else { // Non drafts are not overwritten. The autosave is stored in a special post revision.
    13241324        $id = wp_create_post_autosave( $post->ID );
    13251325        if ( ! is_wp_error($id) )
Note: See TracChangeset for help on using the changeset viewer.