Make WordPress Core


Ignore:
Timestamp:
09/29/2014 01:27:55 PM (11 years ago)
Author:
markjaquith
Message:

Use HTTPS URLs for core.trac.wordpress.org

see #27115

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/xmlrpc/wp/restoreRevision.php

    r25002 r29788  
    1212
    1313        $this->post_id = $this->factory->post->create( array( 'post_content' => 'edit1' ) ); // Not saved as a revision
    14         // First saved revision on update, see http://core.trac.wordpress.org/changeset/24650
     14        // First saved revision on update, see https://core.trac.wordpress.org/changeset/24650
    1515        wp_insert_post( array( 'ID' => $this->post_id, 'post_content' => 'edit2' ) );
    1616
    1717        $revisions = wp_get_post_revisions( $this->post_id );
    18         //$revision = array_shift( $revisions ); // First revision is empty - http://core.trac.wordpress.org/changeset/23842
    19         // First revision is NOT empty, see http://core.trac.wordpress.org/changeset/24650
     18        //$revision = array_shift( $revisions ); // First revision is empty - https://core.trac.wordpress.org/changeset/23842
     19        // First revision is NOT empty, see https://core.trac.wordpress.org/changeset/24650
    2020        $revision = array_shift( $revisions );
    2121        $this->revision_id = $revision->ID;
Note: See TracChangeset for help on using the changeset viewer.