Make WordPress Core

Changeset 29789


Ignore:
Timestamp:
09/29/2014 01:36:38 PM (10 years ago)
Author:
markjaquith
Message:

Use HTTPS URLs for trac.wordpress.org (and use core.trac.wordpress.org)

see #27115

Location:
trunk
Files:
11 edited

Legend:

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

    r29788 r29789  
    55 * This set of classes are designed to be used to upgrade/install a local set of files on the filesystem via the Filesystem Abstraction classes.
    66 *
    7  * @link http://trac.wordpress.org/ticket/7875 consolidate plugin/theme/core upgrade/install functions
     7 * @link https://core.trac.wordpress.org/ticket/7875 consolidate plugin/theme/core upgrade/install functions
    88 *
    99 * @package WordPress
  • trunk/src/wp-admin/includes/plugin.php

    r29326 r29789  
    6161 * reading.
    6262 *
    63  * @link http://trac.wordpress.org/ticket/5651 Previous Optimizations.
    64  * @link http://trac.wordpress.org/ticket/7372 Further and better Optimizations.
     63 * @link https://core.trac.wordpress.org/ticket/5651 Previous Optimizations.
     64 * @link https://core.trac.wordpress.org/ticket/7372 Further and better Optimizations.
    6565 * @since 1.5.0
    6666 *
  • trunk/src/wp-includes/canonical.php

    r29663 r29789  
    7070
    7171    // Some PHP setups turn requests for / into /index.php in REQUEST_URI
    72     // See: http://trac.wordpress.org/ticket/5017
    73     // See: http://trac.wordpress.org/ticket/7173
     72    // See: https://core.trac.wordpress.org/ticket/5017
     73    // See: https://core.trac.wordpress.org/ticket/7173
    7474    // Disabled, for now:
    7575    // $original['path'] = preg_replace('|/index\.php$|', '/', $original['path']);
  • trunk/src/wp-includes/class-http.php

    r29788 r29789  
    66 * decoding, if HTTP 1.1 and various other difficult HTTP protocol implementations.
    77 *
    8  * @link http://trac.wordpress.org/ticket/4779 HTTP API Proposal
     8 * @link https://core.trac.wordpress.org/ticket/4779 HTTP API Proposal
    99 *
    1010 * @package WordPress
  • trunk/src/wp-includes/general-template.php

    r29788 r29789  
    572572 * @since 1.5.0
    573573 *
    574  * @link http://trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.
     574 * @link https://core.trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action.
    575575 */
    576576function wp_meta() {
  • trunk/src/wp-includes/http.php

    r29230 r29789  
    55 * Will eventually replace and standardize the WordPress HTTP requests made.
    66 *
    7  * @link http://trac.wordpress.org/ticket/4779 HTTP API Proposal
     7 * @link https://core.trac.wordpress.org/ticket/4779 HTTP API Proposal
    88 *
    99 * @package WordPress
  • trunk/src/wp-includes/pluggable.php

    r29751 r29789  
    361361     * there's no easy alternative. Defaulting to admin_email might appear to be another
    362362     * option but some hosts may refuse to relay mail from an unknown domain. See
    363      * http://trac.wordpress.org/ticket/5007.
     363     * https://core.trac.wordpress.org/ticket/5007.
    364364     */
    365365
  • trunk/src/wp-includes/plugin.php

    r29665 r29789  
    866866 * shouldn't have any speed penalty.
    867867 *
    868  * @link http://trac.wordpress.org/ticket/3875
     868 * @link https://core.trac.wordpress.org/ticket/3875
    869869 *
    870870 * @since 2.2.3
  • trunk/tests/phpunit/includes/wp-profiler.php

    r25254 r29789  
    149149
    150150    function _query_count($queries) {
    151         // this requires the savequeries patch at http://trac.wordpress.org/ticket/5218
     151        // this requires the savequeries patch at https://core.trac.wordpress.org/ticket/5218
    152152        $out = array();
    153153        foreach ($queries as $q) {
  • trunk/tests/phpunit/tests/image/meta.php

    r25002 r29789  
    8888    function test_exif_error() {
    8989
    90         // http://trac.wordpress.org/ticket/6571
     90        // https://core.trac.wordpress.org/ticket/6571
    9191        // this triggers a warning mesage when reading the exif block
    9292        $out = wp_read_image_metadata(DIR_TESTDATA.'/images/waffles.jpg');
  • trunk/tests/phpunit/tests/post.php

    r29351 r29789  
    166166    function test_vb_insert_future_edit_bug() {
    167167        // future post bug: posts get published at the wrong time if you edit the timestamp
    168         // http://trac.wordpress.org/ticket/4710
     168        // https://core.trac.wordpress.org/ticket/4710
    169169
    170170        $future_date_1 = strtotime('+1 day');
Note: See TracChangeset for help on using the changeset viewer.