From dea5bfef24668d72a8442f977bc28e9b24fe2979 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 18 Feb 2012 10:49:24 +0000 Subject: [PATCH] add empty line in log between request body and response --- phpgwapi/inc/class.groupdav.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.groupdav.inc.php b/phpgwapi/inc/class.groupdav.inc.php index 81fcd9a5a1..c944771b29 100644 --- a/phpgwapi/inc/class.groupdav.inc.php +++ b/phpgwapi/inc/class.groupdav.inc.php @@ -1530,7 +1530,7 @@ class groupdav extends HTTP_WebDAV_Server $content .= "\n"; if ($this->request) { - $content .= $this->request; + $content .= $this->request."\n"; } $content .= 'HTTP/1.1 '.$this->_http_status."\n"; foreach(headers_list() as $line) $content .= $line."\n";