Skip to content
Snippets Groups Projects
Commit 30f95a33 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #28861 by Malthus: fixed typo in XML-RPC backend. Missing $.

- Made chx the XML-RPC maintainer.
parent 2549e506
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -20,10 +20,6 @@ BLOG API ...@@ -20,10 +20,6 @@ BLOG API
M: James Walker <walkah@walkah.net> M: James Walker <walkah@walkah.net>
S: maintained S: maintained
CODING STYLE CHECKER
M: Alexander Schwartz <alexander.schwartz@gmx.net>
S: maintained
DISTRIBUTED AUTHENTICATION MODULES DISTRIBUTED AUTHENTICATION MODULES
M: Moshe Weitzman <weitzman@tejasa.com> M: Moshe Weitzman <weitzman@tejasa.com>
S: maintained S: maintained
...@@ -52,6 +48,10 @@ STATISTICS MODULE ...@@ -52,6 +48,10 @@ STATISTICS MODULE
M: Jeremy Andrews <jeremy@kerneltrap.com> M: Jeremy Andrews <jeremy@kerneltrap.com>
S: maintained S: maintained
XML-RPC SERVER/CLIENT
M: Károly Négyesi <chx@mail.tvnet.hu>
S: maintained
DEBIAN PACKAGE DEBIAN PACKAGE
M: Hilko Bengen <bengen@debian.org> M: Hilko Bengen <bengen@debian.org>
S: maintained S: maintained
......
...@@ -45,7 +45,7 @@ function xmlrpc_server($callbacks) { ...@@ -45,7 +45,7 @@ function xmlrpc_server($callbacks) {
} }
$data = file_get_contents('php://input'); $data = file_get_contents('php://input');
if (!data) { if (!$data) {
die('XML-RPC server accepts POST requests only.'); die('XML-RPC server accepts POST requests only.');
} }
$xmlrpc_server->message = xmlrpc_message($data); $xmlrpc_server->message = xmlrpc_message($data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment