* Adressbook/CardDAV: unconditionally start output-buffering to fix problems with huge multiget reports from TB110 AB

This commit is contained in:
ralf 2023-07-15 08:29:34 +02:00
parent 3c81672a41
commit 9ad249fa30

View File

@ -2336,8 +2336,9 @@ class CalDAV extends HTTP_WebDAV_Server
$this->store_request = $_SERVER['REQUEST_METHOD'] != 'POST' ||
!self::isFileUpload() ||
substr($_SERVER['CONTENT_TYPE'], 0, 5) == 'text/';
ob_start();
}
// unconditionally start output-buffering to fix problems with huge multiget reports from TB110 AB
ob_start();
parent::ServeRequest($prefix);
if (self::$request_starttime) self::log_request();