summaryrefslogtreecommitdiff
path: root/includes/xmlrpcs.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-28 11:41:11 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-28 11:41:11 +0000
commit8f00019551d8c96d2ed0ecbf87cc4003fbe226da (patch)
tree8aae556387c3f6605e7b180afab527bf45ead4dd /includes/xmlrpcs.inc
parentd5c607041a338d324adfbfa9d5f76c1ebbd3a2fa (diff)
downloadbrdo-8f00019551d8c96d2ed0ecbf87cc4003fbe226da.tar.gz
brdo-8f00019551d8c96d2ed0ecbf87cc4003fbe226da.tar.bz2
- Renamed 'Content-length' to 'Content-Length. Fixes bug #4323
Diffstat (limited to 'includes/xmlrpcs.inc')
-rw-r--r--includes/xmlrpcs.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/xmlrpcs.inc b/includes/xmlrpcs.inc
index 723e7a919..a3dce43d1 100644
--- a/includes/xmlrpcs.inc
+++ b/includes/xmlrpcs.inc
@@ -173,7 +173,7 @@ class xmlrpc_server {
$payload="<?xml version=\"1.0\"?>\n" .
$this->serializeDebug() .
$r->serialize();
- Header("Content-type: text/xml\r\nContent-length: " .
+ Header("Content-type: text/xml\r\nContent-Length: " .
strlen($payload));
print $payload;
}