From d0355f72ca75af0b9320a4560b14716195963a57 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Sat, 12 Dec 2009 19:20:52 +0000
Subject: [PATCH] - Patch #656266 by fgm: added missing a matching
 hook_xml_rpc_alter().

---
 xmlrpc.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/xmlrpc.php b/xmlrpc.php
index 4b6b1153fcef..fee29fd5e60c 100644
--- a/xmlrpc.php
+++ b/xmlrpc.php
@@ -16,4 +16,6 @@
 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);
-- 
GitLab