diff options
author | alecpl <alec@alec.pl> | 2009-06-01 07:21:14 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-06-01 07:21:14 +0000 |
commit | d51c93b43e4b24b56e5c225154be4a60fcb418c6 (patch) | |
tree | 6ff1359de517f9f6dea04c5ebf2503b81be35825 | |
parent | c52d9afae0b029a2e66d5ba5f4e9253bb24e7202 (diff) |
- get rid of some hardcoded action names and move decission about output compression to the user
-rw-r--r-- | .htaccess | 2 | ||||
-rw-r--r-- | index.php | 14 | ||||
-rw-r--r-- | program/steps/mail/get.inc | 1 | ||||
-rw-r--r-- | program/steps/mail/viewsource.inc | 1 |
4 files changed, 5 insertions, 13 deletions
@@ -10,7 +10,7 @@ php_value upload_max_filesize 5M php_value post_max_size 6M php_value memory_limit 64M -php_value zlib.output_compression 0 +php_value zlib.output_compression 1 php_value magic_quotes_gpc 0 php_value zend.ze1_compatibility_mode 0 php_value suhosin.session.encrypt Off @@ -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()) { diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc index d2863e8bc..cf66914d7 100644 --- a/program/steps/mail/get.inc +++ b/program/steps/mail/get.inc @@ -33,6 +33,7 @@ if (!empty($_GET['_preload'])) { exit; } +ob_end_clean(); // similar code as in program/steps/mail/show.inc if (!empty($_GET['_uid'])) { diff --git a/program/steps/mail/viewsource.inc b/program/steps/mail/viewsource.inc index 56a8ddec8..16d92c859 100644 --- a/program/steps/mail/viewsource.inc +++ b/program/steps/mail/viewsource.inc @@ -19,6 +19,7 @@ */ +ob_end_clean(); // similar code as in program/steps/mail/get.inc if ($uid = get_input_value('_uid', RCUBE_INPUT_GET)) |