From 05fadb2049d0f70e26dca7068168212129765818 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 25 Jun 2009 10:31:53 +0000 Subject: [PATCH] "reverting my inition comit to switch output buffering off in webdav.php, as it makes problems on system with do automatic output compression, eg. debian5 --> modified header template to not switch it on in first place, for webdav.php" --- header.inc.php.template | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/header.inc.php.template b/header.inc.php.template index 67f0a9eb4a..67c1d77677 100644 --- a/header.inc.php.template +++ b/header.inc.php.template @@ -96,7 +96,10 @@ $GLOBALS['egw_info']['server']['versions']['header'] = '1.29'; if(!isset($GLOBALS['egw_info']['flags']['noapi']) || !$GLOBALS['egw_info']['flags']['noapi']) { - ob_start(); // to prevent error messages to be send before our headers + if (substr($_SERVER['SCRIPT_NAME'],-10) != 'webdav.php') // dont do it for webdav, as we can not savely switch it off again + { + ob_start(); // to prevent error messages to be send before our headers + } require_once(EGW_API_INC . '/functions.inc.php'); } else