summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-08-17 19:14:08 +0000
committerDries Buytaert <dries@buytaert.net>2005-08-17 19:14:08 +0000
commitb14ae54d6224d85d89046a938622509ad533709a (patch)
tree78613a05840959ac5854221b2f4a6a7c9f1f1501
parentd6bcdafeedeb97e4c08586c518b0f27cb3a022db (diff)
downloadbrdo-b14ae54d6224d85d89046a938622509ad533709a.tar.gz
brdo-b14ae54d6224d85d89046a938622509ad533709a.tar.bz2
- Patch #7458 by chx: fixed spaces.
-rw-r--r--includes/common.inc42
1 files changed, 21 insertions, 21 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 993e0354a..9fc7fa2d8 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1827,27 +1827,27 @@ function drupal_implode_autocomplete($array) {
}
/**
-* Performs one or more XML-RPC request(s).
-*
-* @param $url
-* An absolute URL of the XML-RPC endpoint.
-* Example:
-* http://www.domain.com/xmlrpc.php
-* @param ...
-* For one request:
-* The method name followed by a variable number of arguments to the method.
-* For multiple requests (system.multicall):
-* An array of call arrays. Each call array follows the pattern of the single
-* request: method name followed by the arguments to the method.
-* @return
-* For one request:
-* Either the return value of the method on success, or FALSE.
-* If FALSE is returned, see xmlrpc_errno() and xmlrpc_error_msg().
-* For multiple requests:
-* An array of results. Each result will either be the result
-* returned by the method called, or an xmlrpc_error object if the call
-* failed. See xmlrpc_error().
-*/
+ * Performs one or more XML-RPC request(s).
+ *
+ * @param $url
+ * An absolute URL of the XML-RPC endpoint.
+ * Example:
+ * http://www.domain.com/xmlrpc.php
+ * @param ...
+ * For one request:
+ * The method name followed by a variable number of arguments to the method.
+ * For multiple requests (system.multicall):
+ * An array of call arrays. Each call array follows the pattern of the single
+ * request: method name followed by the arguments to the method.
+ * @return
+ * For one request:
+ * Either the return value of the method on success, or FALSE.
+ * If FALSE is returned, see xmlrpc_errno() and xmlrpc_error_msg().
+ * For multiple requests:
+ * An array of results. Each result will either be the result
+ * returned by the method called, or an xmlrpc_error object if the call
+ * failed. See xmlrpc_error().
+ */
function xmlrpc($url) {
require_once './includes/xmlrpc.inc';
$args = func_get_args();