Merge pull request #46 from nhubbard2/master

Fix Issue #36
This commit is contained in:
Michael Teeuw 2016-01-15 21:25:22 +01:00
commit 91a57fdd88

View File

@ -30,7 +30,7 @@
* @note If http response header mentions that content is gzipped, then uncompress it. * @note If http response header mentions that content is gzipped, then uncompress it.
*/ */
foreach($http_response_header as $c => $h) { foreach($http_response_header as $c => $h) {
if(stristr($h, "content-encoding") and stristr($h, "gzip") { if(stristr($h, "content-encoding") and stristr($h, "gzip")) {
/* /*
* @note Now, let's begin the actual purpose of this function: * @note Now, let's begin the actual purpose of this function:
*/ */