From 024ede2c6bcd240302d31343bb63293d96659872 Mon Sep 17 00:00:00 2001 From: Marina Glancy Date: Mon, 28 May 2018 11:14:42 +0800 Subject: [PATCH] MDL-62584 xmlrpc: return correct content-length --- webservice/xmlrpc/locallib.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webservice/xmlrpc/locallib.php b/webservice/xmlrpc/locallib.php index fb888d9d8a0..92203e70eb0 100644 --- a/webservice/xmlrpc/locallib.php +++ b/webservice/xmlrpc/locallib.php @@ -133,8 +133,9 @@ class webservice_xmlrpc_server extends webservice_base_server { * @param Exception $ex */ protected function send_error($ex = null) { + $this->response = $this->generate_error($ex); $this->send_headers(); - echo $this->generate_error($ex); + echo $this->response; } /**