summaryrefslogtreecommitdiff
path: root/roundcubemail/index.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-01 07:21:14 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-06-01 07:21:14 +0000
commit1596754b67a84823ef86b171faeae56aacc8560c (patch)
tree4545801245a13dfc18c869cb6b879df5f679311c /roundcubemail/index.php
parent091eddb606d4af16c0102126ca65eb562eb54929 (diff)
- get rid of some hardcoded action names and move decission about output compression to the user
git-svn-id: https://svn.roundcube.net/trunk@2586 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/index.php')
-rw-r--r--roundcubemail/index.php14
1 files changed, 2 insertions, 12 deletions
diff --git a/roundcubemail/index.php b/roundcubemail/index.php
index 721aefc7c..0904f2be6 100644
--- a/roundcubemail/index.php
+++ b/roundcubemail/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()) {