Ticket #48479: 48479.diff
| File 48479.diff, 6.6 KB (added by , 6 years ago) |
|---|
-
src/wp-admin/includes/class-ftp-pure.php
8 8 * @version 1.0 9 9 * @copyright Alexey Dotsenko 10 10 * @author Alexey Dotsenko 11 * @link http ://www.phpclasses.org/browse/package/1743.html Site11 * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html Site 12 12 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html 13 13 */ 14 14 … … 22 22 * @version 1.0 23 23 * @copyright Alexey Dotsenko 24 24 * @author Alexey Dotsenko 25 * @link http ://www.phpclasses.org/browse/package/1743.html Site25 * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html Site 26 26 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html 27 27 */ 28 28 class ftp_pure extends ftp_base { -
src/wp-admin/includes/class-ftp-sockets.php
8 8 * @version 1.0 9 9 * @copyright Alexey Dotsenko 10 10 * @author Alexey Dotsenko 11 * @link http ://www.phpclasses.org/browse/package/1743.html Site11 * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html Site 12 12 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html 13 13 */ 14 14 … … 22 22 * @version 1.0 23 23 * @copyright Alexey Dotsenko 24 24 * @author Alexey Dotsenko 25 * @link http ://www.phpclasses.org/browse/package/1743.html Site25 * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html Site 26 26 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html 27 27 */ 28 28 class ftp_sockets extends ftp_base { -
src/wp-admin/includes/class-ftp.php
8 8 * @version 1.0 9 9 * @copyright Alexey Dotsenko 10 10 * @author Alexey Dotsenko 11 * @link http ://www.phpclasses.org/browse/package/1743.html Site11 * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html Site 12 12 * @license LGPL http://www.opensource.org/licenses/lgpl-license.html 13 13 */ 14 14 -
src/wp-includes/ID3/module.audio.ogg.php
463 463 } 464 464 465 465 /** 466 * @link http ://tools.ietf.org/html/draft-ietf-codec-oggopus-03466 * @link https://tools.ietf.org/html/draft-ietf-codec-oggopus-03 467 467 * 468 468 * @param string $filedata 469 469 * @param int $filedataoffset -
src/wp-includes/SimplePie/Caption.php
141 141 /** 142 142 * Get the language 143 143 * 144 * @link http ://tools.ietf.org/html/rfc3066144 * @link https://tools.ietf.org/html/rfc3066 145 145 * @return string|null Language code as per RFC 3066 146 146 */ 147 147 public function get_language() -
src/wp-includes/SimplePie/Enclosure.php
593 593 /** 594 594 * Get the language 595 595 * 596 * @link http ://tools.ietf.org/html/rfc3066596 * @link https://tools.ietf.org/html/rfc3066 597 597 * @return string|null Language code as per RFC 3066 598 598 */ 599 599 public function get_language() -
src/wp-includes/class-phpass.php
4 4 * @package phpass 5 5 * @since 2.5.0 6 6 * @version 0.3 / WordPress 7 * @link http ://www.openwall.com/phpass/7 * @link https://www.openwall.com/phpass/ 8 8 */ 9 9 10 10 # … … 30 30 * 31 31 * @package phpass 32 32 * @version 0.3 / WordPress 33 * @link http ://www.openwall.com/phpass/33 * @link https://www.openwall.com/phpass/ 34 34 * @since 2.5.0 35 35 */ 36 36 class PasswordHash { … … 273 273 274 274 return $hash === $stored_hash; 275 275 } 276 } 277 No newline at end of file 276 } -
src/wp-includes/class-phpmailer.php
2953 2953 2954 2954 /** 2955 2955 * Encode a string using Q encoding. 2956 * @link http ://tools.ietf.org/html/rfc20472956 * @link https://tools.ietf.org/html/rfc2047 2957 2957 * @param string $str the text to encode 2958 2958 * @param string $position Where the text is going to be used, see the RFC for what that means 2959 2959 * @access public -
src/wp-includes/class-smtp.php
128 128 129 129 /** 130 130 * Whether to use VERP. 131 * @link http ://en.wikipedia.org/wiki/Variable_envelope_return_path131 * @link https://en.wikipedia.org/wiki/Variable_envelope_return_path 132 132 * @link http://www.postfix.org/VERP_README.html Info on VERP 133 133 * @var boolean 134 134 */ … … 138 138 * The timeout value for connection, in seconds. 139 139 * Default of 5 minutes (300sec) is from RFC2821 section 4.5.3.2 140 140 * 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.2141 * @link https://tools.ietf.org/html/rfc2821#section-4.5.3.2 142 142 * @var integer 143 143 */ 144 144 public $Timeout = 300; -
src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php
737 737 * 738 738 * @since 4.7.0 739 739 * 740 * @link http ://tools.ietf.org/html/rfc2388741 * @link http ://tools.ietf.org/html/rfc6266740 * @link https://tools.ietf.org/html/rfc2388 741 * @link https://tools.ietf.org/html/rfc6266 742 742 * 743 743 * @param string[] $disposition_header List of Content-Disposition header values. 744 744 * @return string|null Filename if available, or null if not found.