summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-08-14 22:27:40 +0000
committerDries Buytaert <dries@buytaert.net>2005-08-14 22:27:40 +0000
commit30f95a331fa2daf3d8c1ee59c0acf3f650657ad8 (patch)
treeef931a30767c789d1890ca6619574edaa42217cc
parent2549e5068e795986601d10b77ab0f5bc57108eb1 (diff)
downloadbrdo-30f95a331fa2daf3d8c1ee59c0acf3f650657ad8.tar.gz
brdo-30f95a331fa2daf3d8c1ee59c0acf3f650657ad8.tar.bz2
- Patch #28861 by Malthus: fixed typo in XML-RPC backend. Missing $.
- Made chx the XML-RPC maintainer.
-rw-r--r--MAINTAINERS.txt8
-rw-r--r--includes/xmlrpcs.inc2
2 files changed, 5 insertions, 5 deletions
diff --git a/MAINTAINERS.txt b/MAINTAINERS.txt
index 9a5102a35..4843ef951 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 91cfdbcc4..5e422a232 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);