summaryrefslogtreecommitdiff
path: root/xmlrpc.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-07-13 18:46:15 +0000
committerDries Buytaert <dries@buytaert.net>2005-07-13 18:46:15 +0000
commited3bf725bb3b22f65efbe5c9c3d96c8e6f1a0fd2 (patch)
treef515f8883e24acc88c5388d61db1c3afd8dfc79b /xmlrpc.php
parent73010a5215325763c301110ba108bb98b0a4cb98 (diff)
downloadbrdo-ed3bf725bb3b22f65efbe5c9c3d96c8e6f1a0fd2.tar.gz
brdo-ed3bf725bb3b22f65efbe5c9c3d96c8e6f1a0fd2.tar.bz2
- Patch #26391 by chx: replaced the old XML-RPC library with a smaller/better/working one.
Diffstat (limited to 'xmlrpc.php')
-rw-r--r--xmlrpc.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/xmlrpc.php b/xmlrpc.php
index d93055075..408f44062 100644
--- a/xmlrpc.php
+++ b/xmlrpc.php
@@ -10,8 +10,5 @@ include_once 'includes/bootstrap.inc';
drupal_bootstrap('full');
include_once 'includes/xmlrpcs.inc';
-$functions = module_invoke_all('xmlrpc');
-
-$server = new xmlrpc_server($functions);
-
+xmlrpc_server(module_invoke_all('xmlrpc'));
?>