summaryrefslogtreecommitdiff
path: root/xmlrpc.php
diff options
context:
space:
mode:
Diffstat (limited to 'xmlrpc.php')
-rw-r--r--xmlrpc.php5
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'));
?>