Skip to content

Commit

Permalink
Merge pull request #46 from nhubbard2/master
Browse files Browse the repository at this point in the history
Fix Issue #36
  • Loading branch information
MichMich committed Jan 15, 2016
2 parents 6b30d20 + 818d165 commit 91a57fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/functions/gzip.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function get_url($url) {
* @note If http response header mentions that content is gzipped, then uncompress it.
*/
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:
*/
Expand Down

0 comments on commit 91a57fd

Please sign in to comment.