From 30f95a331fa2daf3d8c1ee59c0acf3f650657ad8 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Sun, 14 Aug 2005 22:27:40 +0000
Subject: [PATCH] - Patch #28861 by Malthus: fixed typo in XML-RPC backend. 
 Missing $.

- Made chx the XML-RPC maintainer.
---
 MAINTAINERS.txt      | 8 ++++----
 includes/xmlrpcs.inc | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/MAINTAINERS.txt b/MAINTAINERS.txt
index 9a5102a359ef..4843ef951a2f 100644
--- a/MAINTAINERS.txt
+++ b/MAINTAINERS.txt
@@ -20,10 +20,6 @@ BLOG API
 M: James Walker <walkah@walkah.net>
 S: maintained
 
-CODING STYLE CHECKER
-M: Alexander Schwartz <alexander.schwartz@gmx.net>
-S: maintained
-
 DISTRIBUTED AUTHENTICATION MODULES
 M: Moshe Weitzman <weitzman@tejasa.com>
 S: maintained
@@ -52,6 +48,10 @@ STATISTICS MODULE
 M: Jeremy Andrews <jeremy@kerneltrap.com>
 S: maintained
 
+XML-RPC SERVER/CLIENT
+M: Károly Négyesi <chx@mail.tvnet.hu>
+S: maintained
+
 DEBIAN PACKAGE
 M: Hilko Bengen <bengen@debian.org>
 S: maintained
diff --git a/includes/xmlrpcs.inc b/includes/xmlrpcs.inc
index 91cfdbcc4b2a..5e422a232a1d 100644
--- a/includes/xmlrpcs.inc
+++ b/includes/xmlrpcs.inc
@@ -45,7 +45,7 @@ function xmlrpc_server($callbacks) {
   }
 
   $data = file_get_contents('php://input');
-  if (!data) {
+  if (!$data) {
      die('XML-RPC server accepts POST requests only.');
   }
   $xmlrpc_server->message = xmlrpc_message($data);
-- 
GitLab