X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffunctions.php;h=8f16dfc02a44ac1f7a4583722005bce6404b7573;hp=d81847800247afa6b9d8babb914eee11fe86bf88;hb=e6cc8e9581807e21cf173c8a891869f1983fc935;hpb=3deb4216cd947c4eb14b0a9e3b9f637ca25e77d3 diff --git a/inc/functions.php b/inc/functions.php index d818478002..8f16dfc02a 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -170,12 +170,18 @@ function compileFinalOutput () { // Compress it? if (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (strpos('gzip', $_SERVER['HTTP_ACCEPT_ENCODING']) !== null)) { - // Compress it + // Compress it for HTTP gzip $GLOBALS['output'] = gzencode($GLOBALS['output'], 9, true); // Add header sendHeader('Content-Encoding: gzip'); - } // END - if + } elseif (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (strpos('deflate', $_SERVER['HTTP_ACCEPT_ENCODING']) !== null)) { + // Compress it for HTTP deflate + $GLOBALS['output'] = gzcompress($GLOBALS['output'], 9); + + // Add header + sendHeader('Content-Encoding: deflate'); + } // Add final length sendHeader('Content-Length: ' . strlen($GLOBALS['output']));