Make WordPress Core


Ignore:
Timestamp:
06/10/2016 04:49:09 AM (10 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/formatting.php

    r37669 r37674  
    23622362 *
    23632363 * Slashes will first be removed if magic_quotes_gpc is set, see {@link
    2364  * http://www.php.net/magic_quotes} for more details.
     2364 * https://secure.php.net/magic_quotes} for more details.
    23652365 *
    23662366 * @since 0.71
     
    30363036 * @since 1.5.0
    30373037 *
    3038  * @param string $date_string Date and time in ISO 8601 format {@link http://en.wikipedia.org/wiki/ISO_8601}.
     3038 * @param string $date_string Date and time in ISO 8601 format {@link https://en.wikipedia.org/wiki/ISO_8601}.
    30393039 * @param string $timezone    Optional. If set to GMT returns the time minus gmt_offset. Default is 'user'.
    30403040 * @return string The date and time in MySQL DateTime format - Y-m-d H:i:s.
     
    38333833 * Convert entities, while preserving already-encoded entities.
    38343834 *
    3835  * @link http://www.php.net/htmlentities Borrowed from the PHP Manual user notes.
     3835 * @link https://secure.php.net/htmlentities Borrowed from the PHP Manual user notes.
    38363836 *
    38373837 * @since 1.2.2
     
    42754275 * Parses a string into variables to be stored in an array.
    42764276 *
    4277  * Uses {@link http://www.php.net/parse_str parse_str()} and stripslashes if
    4278  * {@link http://www.php.net/magic_quotes magic_quotes_gpc} is on.
     4277 * Uses {@link https://secure.php.net/parse_str parse_str()} and stripslashes if
     4278 * {@link https://secure.php.net/magic_quotes magic_quotes_gpc} is on.
    42794279 *
    42804280 * @since 2.2.1
     
    43294329 *
    43304330 * @since 2.5.0
    4331  * @link http://www.php.net/sprintf
     4331 * @link https://secure.php.net/sprintf
    43324332 *
    43334333 * @param string $pattern   The string which formatted args are inserted.
Note: See TracChangeset for help on using the changeset viewer.