diff options
author | thomascube <thomas@roundcube.net> | 2006-05-25 14:47:29 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-05-25 14:47:29 +0000 |
commit | 8a256ef5e5530fe26fea2fb94898de1aea46a29e (patch) | |
tree | 49e9116db948188fc6b4fbe2def0c34eb2f3d1c9 | |
parent | 952860c1809fe0d69ccd320759c471ab1e548a72 (diff) |
Always use output buffering
-rw-r--r-- | index.php | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -84,6 +84,8 @@ require_once('PEAR.php'); // use gzip compression if supported if (function_exists('ob_gzhandler') && !ini_get('zlib.output_compression')) ob_start('ob_gzhandler'); +else + ob_start(); // catch some url/post parameters |