summaryrefslogtreecommitdiff
path: root/xmlrpc.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-12 19:20:52 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-12 19:20:52 +0000
commitd0355f72ca75af0b9320a4560b14716195963a57 (patch)
treefb77b07c1e41018d0774d274558b6f24b2751bff /xmlrpc.php
parent7697d266908f8bdca8464f08556bf0266b47c598 (diff)
downloadbrdo-d0355f72ca75af0b9320a4560b14716195963a57.tar.gz
brdo-d0355f72ca75af0b9320a4560b14716195963a57.tar.bz2
- Patch #656266 by fgm: added missing a matching hook_xml_rpc_alter().
Diffstat (limited to 'xmlrpc.php')
-rw-r--r--xmlrpc.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/xmlrpc.php b/xmlrpc.php
index 4b6b1153f..fee29fd5e 100644
--- a/xmlrpc.php
+++ b/xmlrpc.php
@@ -16,4 +16,6 @@ drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
include_once DRUPAL_ROOT . '/includes/xmlrpc.inc';
include_once DRUPAL_ROOT . '/includes/xmlrpcs.inc';
-xmlrpc_server(module_invoke_all('xmlrpc'));
+$services = module_invoke_all('xmlrpc');
+drupal_alter('xmlrpc_alter', $services);
+xmlrpc_server($services);