From 56523eec50d8c38d5403ee0c00434ee20725813b Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sat, 19 Dec 2009 16:16:52 +0100 Subject: do not trim XMLRPC values FS#1824 Ignore-this: f43d3f070cfae4040e0e70648d0e541a The XMLRPC backend will not trim whitespaces or newlines from string values anymore. darcs-hash:20091219151652-7ad00-94d6cb26ff6396e09f107cf09dccb5423680c5c9.gz --- lib/exe/xmlrpc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/exe/xmlrpc.php') diff --git a/lib/exe/xmlrpc.php b/lib/exe/xmlrpc.php index 9b440c9f5..d3913482f 100644 --- a/lib/exe/xmlrpc.php +++ b/lib/exe/xmlrpc.php @@ -466,14 +466,14 @@ class dokuwiki_xmlrpc_server extends IXR_IntrospectionServer { global $conf; $id = cleanID($id); - $TEXT = trim($text); + $TEXT = cleanText($text); $sum = $params['sum']; $minor = $params['minor']; if(empty($id)) return new IXR_Error(1, 'Empty page ID'); - if(!page_exists($id) && empty($TEXT)) { + if(!page_exists($id) && trim($TEXT) == '' ) { return new IXR_ERROR(1, 'Refusing to write an empty new wiki page'); } -- cgit v1.2.3