diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-08-17 15:01:14 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-08-17 15:01:14 +0000 |
commit | d6bcdafeedeb97e4c08586c518b0f27cb3a022db (patch) | |
tree | 00ea09233b432ce75b1fa6c66ca2c55bf87df05a /xmlrpc.php | |
parent | 05014a31353af85cb549a87c03604114eac9b13c (diff) | |
download | brdo-d6bcdafeedeb97e4c08586c518b0f27cb3a022db.tar.gz brdo-d6bcdafeedeb97e4c08586c518b0f27cb3a022db.tar.bz2 |
- Patch #7458 by chx: merged the XML-RPC multicall support into xmlrpc() and use lazy-loading for the XML-RPC libraries.(performance improvement).
Diffstat (limited to 'xmlrpc.php')
-rw-r--r-- | xmlrpc.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xmlrpc.php b/xmlrpc.php index 3cfc87493..7db4acfb3 100644 --- a/xmlrpc.php +++ b/xmlrpc.php @@ -6,9 +6,10 @@ * PHP page for handling incoming XML-RPC requests from clients. */ -include_once 'includes/bootstrap.inc'; +include_once './includes/bootstrap.inc'; drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); -include_once 'includes/xmlrpcs.inc'; +include_once './includes/xmlrpc.inc'; +include_once './includes/xmlrpcs.inc'; xmlrpc_server(module_invoke_all('xmlrpc')); ?> |