Skip to content

Commit

Permalink
Merge pull request #217 from rmccue/https-links
Browse files Browse the repository at this point in the history
Change more links to HTTPS
  • Loading branch information
rmccue authored Jul 16, 2016
2 parents 1257462 + 715ee04 commit ae16e79
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions library/Requests.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Requests {
/**
* PATCH method
*
* @link http://tools.ietf.org/html/rfc5789
* @link https://tools.ietf.org/html/rfc5789
* @var string
*/
const PATCH = 'PATCH';
Expand Down Expand Up @@ -287,7 +287,7 @@ public static function options($url, $headers = array(), $data = array(), $optio
* Note: Unlike {@see post} and {@see put}, `$headers` is required, as the
* specification recommends that should send an ETag
*
* @link http://tools.ietf.org/html/rfc5789
* @link https://tools.ietf.org/html/rfc5789
*/
public static function patch($url, $headers, $data = array(), $options = array()) {
return self::request($url, $headers, $data, self::PATCH, $options);
Expand Down Expand Up @@ -744,7 +744,7 @@ public static function parse_multiple(&$response, $request) {
/**
* Decoded a chunked body as per RFC 2616
*
* @see http://tools.ietf.org/html/rfc2616#section-3.6.1
* @see https://tools.ietf.org/html/rfc2616#section-3.6.1
* @param string $data Chunked body
* @return string Decoded body
*/
Expand Down Expand Up @@ -850,12 +850,12 @@ public static function decompress($data) {
* Warning: Magic numbers within. Due to the potential different formats that the compressed
* data may be returned in, some "magic offsets" are needed to ensure proper decompression
* takes place. For a simple progmatic way to determine the magic offset in use, see:
* http://core.trac.wordpress.org/ticket/18273
* https://core.trac.wordpress.org/ticket/18273
*
* @since 2.8.1
* @link http://core.trac.wordpress.org/ticket/18273
* @link http://au2.php.net/manual/en/function.gzinflate.php#70875
* @link http://au2.php.net/manual/en/function.gzinflate.php#77336
* @link https://core.trac.wordpress.org/ticket/18273
* @link https://secure.php.net/manual/en/function.gzinflate.php#70875
* @link https://secure.php.net/manual/en/function.gzinflate.php#77336
*
* @param string $gzData String to decompress.
* @return string|bool False on failure.
Expand Down Expand Up @@ -893,7 +893,7 @@ public static function compatible_gzinflate($gzData) {
// java.util.zip.Deflater, Ruby’s Zlib::Deflate, and .NET's
// System.IO.Compression.DeflateStream.
//
// See http://decompres.blogspot.com/ for a quick explanation of this
// See https://decompres.blogspot.com/ for a quick explanation of this
// data type
$huffman_encoded = false;

Expand Down

0 comments on commit ae16e79

Please sign in to comment.