add empty line in log between request body and response

This commit is contained in:
Ralf Becker 2012-02-18 10:50:20 +00:00
parent bfd50d213e
commit fa2c15e8c4

View File

@ -1530,7 +1530,7 @@ class groupdav extends HTTP_WebDAV_Server
$content .= "\n"; $content .= "\n";
if ($this->request) if ($this->request)
{ {
$content .= $this->request; $content .= $this->request."\n";
} }
$content .= 'HTTP/1.1 '.$this->_http_status."\n"; $content .= 'HTTP/1.1 '.$this->_http_status."\n";
foreach(headers_list() as $line) $content .= $line."\n"; foreach(headers_list() as $line) $content .= $line."\n";