Make WordPress Core

Ticket #48479: 48479.diff

File 48479.diff, 6.6 KB (added by tsuyoring, 6 years ago)

I fixed this.

  • src/wp-admin/includes/class-ftp-pure.php

     
    88 * @version 1.0
    99 * @copyright Alexey Dotsenko
    1010 * @author Alexey Dotsenko
    11  * @link http://www.phpclasses.org/browse/package/1743.html Site
     11 * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html Site
    1212 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html
    1313 */
    1414
     
    2222 * @version 1.0
    2323 * @copyright Alexey Dotsenko
    2424 * @author Alexey Dotsenko
    25  * @link http://www.phpclasses.org/browse/package/1743.html Site
     25 * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html Site
    2626 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html
    2727 */
    2828class ftp_pure extends ftp_base {
  • src/wp-admin/includes/class-ftp-sockets.php

     
    88 * @version 1.0
    99 * @copyright Alexey Dotsenko
    1010 * @author Alexey Dotsenko
    11  * @link http://www.phpclasses.org/browse/package/1743.html Site
     11 * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html Site
    1212 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html
    1313 */
    1414
     
    2222 * @version 1.0
    2323 * @copyright Alexey Dotsenko
    2424 * @author Alexey Dotsenko
    25  * @link http://www.phpclasses.org/browse/package/1743.html Site
     25 * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html Site
    2626 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html
    2727 */
    2828class ftp_sockets extends ftp_base {
  • src/wp-admin/includes/class-ftp.php

     
    88 * @version 1.0
    99 * @copyright Alexey Dotsenko
    1010 * @author Alexey Dotsenko
    11  * @link http://www.phpclasses.org/browse/package/1743.html Site
     11 * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html Site
    1212 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html
    1313 */
    1414
  • src/wp-includes/ID3/module.audio.ogg.php

     
    463463        }
    464464
    465465        /**
    466          * @link http://tools.ietf.org/html/draft-ietf-codec-oggopus-03
     466         * @link https://tools.ietf.org/html/draft-ietf-codec-oggopus-03
    467467         *
    468468         * @param string $filedata
    469469         * @param int    $filedataoffset
  • src/wp-includes/SimplePie/Caption.php

     
    141141        /**
    142142         * Get the language
    143143         *
    144          * @link http://tools.ietf.org/html/rfc3066
     144         * @link https://tools.ietf.org/html/rfc3066
    145145         * @return string|null Language code as per RFC 3066
    146146         */
    147147        public function get_language()
  • src/wp-includes/SimplePie/Enclosure.php

     
    593593        /**
    594594         * Get the language
    595595         *
    596          * @link http://tools.ietf.org/html/rfc3066
     596         * @link https://tools.ietf.org/html/rfc3066
    597597         * @return string|null Language code as per RFC 3066
    598598         */
    599599        public function get_language()
  • src/wp-includes/class-phpass.php

     
    44 * @package phpass
    55 * @since 2.5.0
    66 * @version 0.3 / WordPress
    7  * @link http://www.openwall.com/phpass/
     7 * @link https://www.openwall.com/phpass/
    88 */
    99
    1010#
     
    3030 *
    3131 * @package phpass
    3232 * @version 0.3 / WordPress
    33  * @link http://www.openwall.com/phpass/
     33 * @link https://www.openwall.com/phpass/
    3434 * @since 2.5.0
    3535 */
    3636class PasswordHash {
     
    273273
    274274                return $hash === $stored_hash;
    275275        }
    276 }
    277  No newline at end of file
     276}
  • src/wp-includes/class-phpmailer.php

     
    29532953
    29542954    /**
    29552955     * Encode a string using Q encoding.
    2956      * @link http://tools.ietf.org/html/rfc2047
     2956     * @link https://tools.ietf.org/html/rfc2047
    29572957     * @param string $str the text to encode
    29582958     * @param string $position Where the text is going to be used, see the RFC for what that means
    29592959     * @access public
  • src/wp-includes/class-smtp.php

     
    128128
    129129    /**
    130130     * Whether to use VERP.
    131      * @link http://en.wikipedia.org/wiki/Variable_envelope_return_path
     131     * @link https://en.wikipedia.org/wiki/Variable_envelope_return_path
    132132     * @link http://www.postfix.org/VERP_README.html Info on VERP
    133133     * @var boolean
    134134     */
     
    138138     * The timeout value for connection, in seconds.
    139139     * Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2
    140140     * This needs to be quite high to function correctly with hosts using greetdelay as an anti-spam measure.
    141      * @link http://tools.ietf.org/html/rfc2821#section-4.5.3.2
     141     * @link https://tools.ietf.org/html/rfc2821#section-4.5.3.2
    142142     * @var integer
    143143     */
    144144    public $Timeout = 300;
  • src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php

     
    737737         *
    738738         * @since 4.7.0
    739739         *
    740          * @link http://tools.ietf.org/html/rfc2388
    741          * @link http://tools.ietf.org/html/rfc6266
     740         * @link https://tools.ietf.org/html/rfc2388
     741         * @link https://tools.ietf.org/html/rfc6266
    742742         *
    743743         * @param string[] $disposition_header List of Content-Disposition header values.
    744744         * @return string|null Filename if available, or null if not found.