Make WordPress Core

Ticket #37622: 37622.patch

File 37622.patch, 2.3 KB (added by johnpgreen, 8 years ago)
  • src/wp-includes/compat.php

     
    450450         *
    451451         * @since 4.5.3
    452452         *
    453          * @see http://php.net/manual/en/function.array-replace-recursive.php#109390
     453         * @see https://secure.php.net/manual/en/function.array-replace-recursive.php#109390
    454454         *
    455455         * @param  array $base         Array with keys needing to be replaced.
    456456         * @param  array $replacements Array with the replaced keys.
  • src/wp-includes/load.php

     
    981981 * @since 2.3.0
    982982 * @since 4.6.0 Moved from media.php to load.php.
    983983 *
    984  * @link http://php.net/manual/en/function.ini-get.php
    985  * @link http://php.net/manual/en/faq.using.php#faq.using.shorthandbytes
     984 * @link https://secure.php.net/manual/en/function.ini-get.php
     985 * @link https://secure.php.net/manual/en/faq.using.php#faq.using.shorthandbytes
    986986 *
    987987 * @param string $value A (PHP ini) byte value, either shorthand or ordinary.
    988988 * @return int An integer byte value.
     
    10081008 *
    10091009 * @since 4.6.0
    10101010 *
    1011  * @link http://php.net/manual/en/function.ini-get-all.php
     1011 * @link https://secure.php.net/manual/en/function.ini-get-all.php
    10121012 *
    10131013 * @param string $setting The name of the ini setting to check.
    10141014 * @return bool True if the value is changeable at runtime. False otherwise.
  • tests/phpunit/tests/mail.php

     
    286286         * > If an entity is of type "multipart" the Content-Transfer-Encoding is
    287287         * > not permitted to have any value other than "7bit", "8bit" or
    288288         * > "binary".
    289          * http://tools.ietf.org/html/rfc2045#section-6.4
     289         * https://tools.ietf.org/html/rfc2045#section-6.4
    290290         *
    291291         * > "Content-Transfer-Encoding: 7BIT" is assumed if the
    292292         * > Content-Transfer-Encoding header field is not present.
    293          * http://tools.ietf.org/html/rfc2045#section-6.1
     293         * https://tools.ietf.org/html/rfc2045#section-6.1
    294294         *
    295295         * @ticket 28039
    296296         */