Make WordPress Core


Ignore:
Timestamp:
06/10/2016 04:49:09 AM (9 years ago)
Author:
peterwilsoncc
Message:

DOCS: Replace HTTP links with HTTPS.

Replaces unsecure links in documentation and translator comments with their secure versions.

Props johnpgreen, netweb

Fixes #36993

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/Requests/IDNAEncoder.php

    r37428 r37674  
    88 * @package Requests
    99 * @subpackage Utilities
    10  * @see http://tools.ietf.org/html/rfc3490 IDNA specification
    11  * @see http://tools.ietf.org/html/rfc3492 Punycode/Bootstrap specification
     10 * @see https://tools.ietf.org/html/rfc3490 IDNA specification
     11 * @see https://tools.ietf.org/html/rfc3492 Punycode/Bootstrap specification
    1212 */
    1313class Requests_IDNAEncoder {
     
    1515     * ACE prefix used for IDNA
    1616     *
    17      * @see http://tools.ietf.org/html/rfc3490#section-5
     17     * @see https://tools.ietf.org/html/rfc3490#section-5
    1818     * @var string
    1919     */
     
    2323     * Bootstrap constant for Punycode
    2424     *
    25      * @see http://tools.ietf.org/html/rfc3492#section-5
     25     * @see https://tools.ietf.org/html/rfc3492#section-5
    2626     * @var int
    2727     */
     
    334334     * Convert a digit to its respective character
    335335     *
    336      * @see http://tools.ietf.org/html/rfc3492#section-5
     336     * @see https://tools.ietf.org/html/rfc3492#section-5
    337337     * @throws Requests_Exception On invalid digit (`idna.invalid_digit`)
    338338     *
     
    354354     * Adapt the bias
    355355     *
    356      * @see http://tools.ietf.org/html/rfc3492#section-6.1
     356     * @see https://tools.ietf.org/html/rfc3492#section-6.1
    357357     * @param int $delta
    358358     * @param int $numpoints
Note: See TracChangeset for help on using the changeset viewer.