Make WordPress Core

Changeset 40948


Ignore:
Timestamp:
06/25/2017 10:05:54 PM (7 years ago)
Author:
DrewAPicture
Message:

Docs: Replace a variety of http links referenced in inline docs with their https counterparts (where possible).

Props johnpgreen.
Fixes #40732.

Location:
trunk/src
Files:
7 edited

Legend:

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

    r40865 r40948  
    3939</ol>
    4040
    41 <p><?php printf( __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We&#8217;re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 'http://wordpressfoundation.org/trademark-policy/' ); ?></p>
     41<p><?php printf( __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We&#8217;re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 'https://wordpressfoundation.org/trademark-policy/' ); ?></p>
    4242
    4343<p><?php
  • trunk/src/wp-admin/includes/dashboard.php

    r40905 r40948  
    14601460        $notice .= "<p class='browser-update-nag{$browser_nag_class}'>{$msg}</p>";
    14611461
    1462         $browsehappy = 'http://browsehappy.com/';
     1462        $browsehappy = 'https://browsehappy.com/';
    14631463        $locale = get_user_locale();
    14641464        if ( 'en_US' !== $locale )
  • trunk/src/wp-content/themes/twentysixteen/functions.php

    r40851 r40948  
    7979     * Enable support for Post Thumbnails on posts and pages.
    8080     *
    81      * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
     81     * @link https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
    8282     */
    8383    add_theme_support( 'post-thumbnails' );
  • trunk/src/wp-content/themes/twentysixteen/index.php

    r40851 r40948  
    88 * E.g., it puts together the home page when no home.php file exists.
    99 *
    10  * @link http://codex.wordpress.org/Template_Hierarchy
     10 * @link https://codex.wordpress.org/Template_Hierarchy
    1111 *
    1212 * @package WordPress
  • trunk/src/wp-includes/class-wp-hook.php

    r39430 r40948  
    408408     * @access public
    409409     *
    410      * @link http://php.net/manual/en/arrayaccess.offsetexists.php
     410     * @link https://secure.php.net/manual/en/arrayaccess.offsetexists.php
    411411     *
    412412     * @param mixed $offset An offset to check for.
     
    423423     * @access public
    424424     *
    425      * @link http://php.net/manual/en/arrayaccess.offsetget.php
     425     * @link https://secure.php.net/manual/en/arrayaccess.offsetget.php
    426426     *
    427427     * @param mixed $offset The offset to retrieve.
     
    438438     * @access public
    439439     *
    440      * @link http://php.net/manual/en/arrayaccess.offsetset.php
     440     * @link https://secure.php.net/manual/en/arrayaccess.offsetset.php
    441441     *
    442442     * @param mixed $offset The offset to assign the value to.
     
    457457     * @access public
    458458     *
    459      * @link http://php.net/manual/en/arrayaccess.offsetunset.php
     459     * @link https://secure.php.net/manual/en/arrayaccess.offsetunset.php
    460460     *
    461461     * @param mixed $offset The offset to unset.
     
    471471     * @access public
    472472     *
    473      * @link http://php.net/manual/en/iterator.current.php
     473     * @link https://secure.php.net/manual/en/iterator.current.php
    474474     *
    475475     * @return array Of callbacks at current priority.
     
    485485     * @access public
    486486     *
    487      * @link http://php.net/manual/en/iterator.next.php
     487     * @link https://secure.php.net/manual/en/iterator.next.php
    488488     *
    489489     * @return array Of callbacks at next priority.
     
    499499     * @access public
    500500     *
    501      * @link http://php.net/manual/en/iterator.key.php
     501     * @link https://secure.php.net/manual/en/iterator.key.php
    502502     *
    503503     * @return mixed Returns current priority on success, or NULL on failure
     
    513513     * @access public
    514514     *
    515      * @link http://php.net/manual/en/iterator.valid.php
     515     * @link https://secure.php.net/manual/en/iterator.valid.php
    516516     *
    517517     * @return boolean
     
    527527     * @access public
    528528     *
    529      * @link http://php.net/manual/en/iterator.rewind.php
     529     * @link https://secure.php.net/manual/en/iterator.rewind.php
    530530     */
    531531    public function rewind() {
  • trunk/src/wp-includes/http.php

    r40299 r40948  
    644644 * @since 4.7.0 The $component parameter was added for parity with PHP's parse_url().
    645645 *
     646 * @link https://secure.php.net/manual/en/function.parse-url.php
     647 *
    646648 * @param string $url       The URL to parse.
    647649 * @param int    $component The specific component to retrieve. Use one of the PHP
    648650 *                          predefined constants to specify which one.
    649651 *                          Defaults to -1 (= return all parts as an array).
    650  *                          @see http://php.net/manual/en/function.parse-url.php
    651652 * @return mixed False on parse failure; Array of URL components on success;
    652653 *               When a specific component has been requested: null if the component
     
    689690 * @since 4.7.0
    690691 *
     692 * @link https://secure.php.net/manual/en/function.parse-url.php
     693 *
    691694 * @param array|false $url_parts The parsed URL. Can be false if the URL failed to parse.
    692695 * @param int    $component The specific component to retrieve. Use one of the PHP
    693696 *                          predefined constants to specify which one.
    694697 *                          Defaults to -1 (= return all parts as an array).
    695  *                          @see http://php.net/manual/en/function.parse-url.php
    696698 * @return mixed False on parse failure; Array of URL components on success;
    697699 *               When a specific component has been requested: null if the component
     
    719721 * @since 4.7.0
    720722 *
    721  * @see   http://php.net/manual/en/url.constants.php
     723 * @link https://secure.php.net/manual/en/url.constants.php
    722724 *
    723725 * @param int $constant PHP_URL_* constant.
  • trunk/src/wp-includes/script-loader.php

    r40866 r40948  
    957957 * @since 4.6.0
    958958 *
    959  * @link http://api.jqueryui.com/datepicker/#options
     959 * @link https://api.jqueryui.com/datepicker/#options
    960960 *
    961961 * @global WP_Locale $wp_locale The WordPress date and time locale object.
Note: See TracChangeset for help on using the changeset viewer.