Changeset 37674 for trunk/src/wp-includes/class-requests.php
- Timestamp:
- 06/10/2016 04:49:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-requests.php
r37428 r37674 72 72 * PATCH method 73 73 * 74 * @link http ://tools.ietf.org/html/rfc578974 * @link https://tools.ietf.org/html/rfc5789 75 75 * @var string 76 76 */ … … 288 288 * specification recommends that should send an ETag 289 289 * 290 * @link http ://tools.ietf.org/html/rfc5789290 * @link https://tools.ietf.org/html/rfc5789 291 291 */ 292 292 public static function patch($url, $headers, $data = array(), $options = array()) { … … 743 743 * Decoded a chunked body as per RFC 2616 744 744 * 745 * @see http ://tools.ietf.org/html/rfc2616#section-3.6.1745 * @see https://tools.ietf.org/html/rfc2616#section-3.6.1 746 746 * @param string $data Chunked body 747 747 * @return string Decoded body … … 849 849 * data may be returned in, some "magic offsets" are needed to ensure proper decompression 850 850 * takes place. For a simple progmatic way to determine the magic offset in use, see: 851 * http ://core.trac.wordpress.org/ticket/18273851 * https://core.trac.wordpress.org/ticket/18273 852 852 * 853 853 * @since 2.8.1 854 * @link http ://core.trac.wordpress.org/ticket/18273855 * @link http ://au2.php.net/manual/en/function.gzinflate.php#70875856 * @link http ://au2.php.net/manual/en/function.gzinflate.php#77336854 * @link https://core.trac.wordpress.org/ticket/18273 855 * @link https://secure.php.net/manual/en/function.gzinflate.php#70875 856 * @link https://secure.php.net/manual/en/function.gzinflate.php#77336 857 857 * 858 858 * @param string $gzData String to decompress. … … 892 892 // System.IO.Compression.DeflateStream. 893 893 // 894 // See http ://decompres.blogspot.com/ for a quick explanation of this894 // See https://decompres.blogspot.com/ for a quick explanation of this 895 895 // data type 896 896 $huffman_encoded = false;
Note: See TracChangeset
for help on using the changeset viewer.