summaryrefslogtreecommitdiff
path: root/includes/xmlrpcs.inc
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 /includes/xmlrpcs.inc
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.
Diffstat (limited to 'includes/xmlrpcs.inc')
-rw-r--r--includes/xmlrpcs.inc2
1 files changed, 1 insertions, 1 deletions
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);