Index: tiny_mce_gzip.php =================================================================== --- tiny_mce_gzip.php (revision 4966) +++ tiny_mce_gzip.php (working copy) @@ -129,17 +129,8 @@ // Check for gzip header or northon internet securities if ((in_array('gzip', $encodings) || in_array('x-gzip', $encodings) || isset($_SERVER['---------------'])) && function_exists('ob_gzhandler') && !ini_get('zlib.output_compression')) { - $enc = in_array('x-gzip', $encodings) ? "x-gzip" : "gzip"; - // Use cached file if it exists but not in debug mode - if (file_exists($cacheFile) && !$debug) { - header("Content-Encoding: " . $enc); - echo file_get_contents($cacheFile); - die; - } - - if (!$diskCache) - ob_start("ob_gzhandler"); + } else $diskCache = false;