Making WordPress.org


Ignore:
Timestamp:
02/12/2019 10:38:50 PM (7 years ago)
Author:
coffee2code
Message:

Developer: Update URLs in inline documentation to HTTPS where possible or to new URLs for those that now redirect.

Props umangvaghela123, coffee2code.
See #3120.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/formatting.php

    r7844 r8233  
    8484     * Handles these six different types of links:
    8585     *
    86      * - {@link http://en.wikipedia.org/wiki/ISO_8601}
     86     * - {@link https://en.wikipedia.org/wiki/ISO_8601}
    8787     * - {@see WP_Rewrite::$index}
    8888     * - {@see WP_Query::query()}
    8989     * - {@see esc_attr()}
    9090     * - {@see 'pre_get_search_form'}
    91      * - {@link http://codex.wordpress.org/The_Loop Use new WordPress Loop}
     91     * - {@link https://codex.wordpress.org/The_Loop Use new WordPress Loop}
    9292     *
    9393     * Note: Though @see and @link are semantically different in meaning, that isn't always
     
    133133                    $parts = explode( ' ', $link, 2 );
    134134
    135                     // Link without linked text: {@link http://en.wikipedia.org/wiki/ISO_8601}
     135                    // Link without linked text: {@link https://en.wikipedia.org/wiki/ISO_8601}
    136136                    if ( 1 === count( $parts ) ) {
    137137                        $url = $text = $link;
    138138                    }
    139139
    140                     // Link with linked text: {@link http://codex.wordpress.org/The_Loop Use new WordPress Loop}
     140                    // Link with linked text: {@link https://codex.wordpress.org/The_Loop Use new WordPress Loop}
    141141                    else {
    142142                        $url = $parts[0];
Note: See TracChangeset for help on using the changeset viewer.