summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-06-01 07:21:14 +0000
committeralecpl <alec@alec.pl>2009-06-01 07:21:14 +0000
commitd51c93b43e4b24b56e5c225154be4a60fcb418c6 (patch)
tree6ff1359de517f9f6dea04c5ebf2503b81be35825 /index.php
parentc52d9afae0b029a2e66d5ba5f4e9253bb24e7202 (diff)
- get rid of some hardcoded action names and move decission about output compression to the user
Diffstat (limited to 'index.php')
-rw-r--r--index.php14
1 files changed, 2 insertions, 12 deletions
diff --git a/index.php b/index.php
index 721aefc7c..0904f2be6 100644
--- a/index.php
+++ b/index.php
@@ -39,18 +39,8 @@ $OUTPUT = !empty($_REQUEST['_remote']) ? $RCMAIL->init_json() : $RCMAIL->load_gu
// init plugin API
$RCMAIL->plugins->init();
-// set output buffering
-if ($RCMAIL->action != 'get' && $RCMAIL->action != 'viewsource') {
- // use gzip compression if supported
- if (function_exists('ob_gzhandler')
- && !ini_get('zlib.output_compression')
- && ini_get('output_handler') != 'ob_gzhandler') {
- ob_start('ob_gzhandler');
- }
- else {
- ob_start();
- }
-}
+// turn on output buffering
+ob_start();
// check if config files had errors
if ($err_str = $RCMAIL->config->get_error()) {