Make WordPress Core


Ignore:
Timestamp:
06/25/2017 10:05:54 PM (8 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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.
Note: See TracChangeset for help on using the changeset viewer.