From: <var...@us...> - 2014-12-01 13:42:01
|
Revision: 9393 http://sourceforge.net/p/phpwiki/code/9393 Author: vargenau Date: 2014-12-01 13:41:58 +0000 (Mon, 01 Dec 2014) Log Message: ----------- PHP Doc Modified Paths: -------------- trunk/lib/XMLRPC/utils.php Modified: trunk/lib/XMLRPC/utils.php =================================================================== --- trunk/lib/XMLRPC/utils.php 2014-12-01 13:17:52 UTC (rev 9392) +++ trunk/lib/XMLRPC/utils.php 2014-12-01 13:41:58 UTC (rev 9393) @@ -159,6 +159,7 @@ * @param pass password for authentication * @param secure secure. wether to use fsockopen_ssl. (requires special php build). * @param output array. xml output options. can be null. details below: + * @return string * * output_type: return data as either php native data types or xml * encoded. if php is used, then the other values are ignored. default = xml @@ -206,7 +207,7 @@ $output = array('version' => 'xmlrpc'); } - $retval = ""; + $retval = ''; if ($host && $uri && $port) { $request_xml = xmlrpc_encode_request($method, $args, $output); $response_buf = xu_query_http_post($request_xml, $host, $uri, $port, $debug, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |