Make WordPress Core


Ignore:
Timestamp:
07/17/2014 09:13:53 AM (11 years ago)
Author:
DrewAPicture
Message:

Fix syntax for single- and multi-line comments in wp-admin-directory files.

See #28931.

File:
1 edited

Legend:

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

    r28500 r29206  
    178178    }
    179179
    180     // If a post has been saved since the last revision (no revisioned fields were changed)
    181     // we may not have a "current" revision. Mark the latest revision as "current".
     180    /*
     181     * If a post has been saved since the last revision (no revisioned fields
     182     * were changed), we may not have a "current" revision. Mark the latest
     183     * revision as "current".
     184     */
    182185    if ( empty( $current_id ) ) {
    183186        if ( $revisions[ $revision->ID ]['autosave'] ) {
     
    193196    }
    194197
    195     // Now, grab the initial diff
     198    // Now, grab the initial diff.
    196199    $compare_two_mode = is_numeric( $from );
    197200    if ( ! $compare_two_mode ) {
Note: See TracChangeset for help on using the changeset viewer.