- Patch #656266 by fgm: added missing a matching hook_xml_rpc_alter().

merge-requests/26/head
Dries Buytaert 2009-12-12 19:20:52 +00:00
parent 7697d26690
commit d0355f72ca
1 changed files with 3 additions and 1 deletions

View File

@ -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);