summaryrefslogtreecommitdiff
path: root/includes/xmlrpcs.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-09-04 21:10:45 +0000
committerDries Buytaert <dries@buytaert.net>2007-09-04 21:10:45 +0000
commit2db2c039fb5caabf511c95f15034ec18b39533d4 (patch)
treecb0c2885a87d46c204f14df42993c40a17f0c454 /includes/xmlrpcs.inc
parent957997516d2b7c0391fe71a84d8e9aa4bb984495 (diff)
downloadbrdo-2db2c039fb5caabf511c95f15034ec18b39533d4.tar.gz
brdo-2db2c039fb5caabf511c95f15034ec18b39533d4.tar.bz2
- Patch #172950 by webernet: code style fixes.
Diffstat (limited to 'includes/xmlrpcs.inc')
-rw-r--r--includes/xmlrpcs.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/xmlrpcs.inc b/includes/xmlrpcs.inc
index 96f9a46d8..7874091a2 100644
--- a/includes/xmlrpcs.inc
+++ b/includes/xmlrpcs.inc
@@ -109,7 +109,7 @@ function xmlrpc_server_output($xml) {
header('Connection: close');
header('Content-Length: '. strlen($xml));
header('Content-Type: text/xml');
- header('Date: '.date('r'));
+ header('Date: '. date('r'));
echo $xml;
exit;
}
@@ -315,4 +315,4 @@ function xmlrpc_server_method_signature($methodname) {
function xmlrpc_server_method_help($method) {
$xmlrpc_server = xmlrpc_server_get();
return $xmlrpc_server->help[$method];
-} \ No newline at end of file
+}