From fc5f3c616a7a783704d1549b2f92cdc2d6a01058 Mon Sep 17 00:00:00 2001 From: hickert Date: Tue, 11 Mar 2008 13:38:47 +0000 Subject: [PATCH] Disabled output compression, if forced git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9675 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/html/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gosa-core/html/main.php b/gosa-core/html/main.php index c265d697e..251196c79 100644 --- a/gosa-core/html/main.php +++ b/gosa-core/html/main.php @@ -64,7 +64,7 @@ $config= session::get('config'); $config->check_and_reload(); /* Enable compressed output */ -if (isset($config->data['MAIN']['COMPRESSED']) && preg_match('/^(true|on)$/i', $config->data['MAIN']['COMPRESSED'])){ +if (isset($config->data['MAIN']['COMPRESSED']) && preg_match('/^(true|on)$/i', $config->data['MAIN']['COMPRESSED']) && !isset($_GET['no_output_compression'])){ ob_start("ob_gzhandler"); } -- 2.30.2