merging fixes by Mark Ghosh for service pings
git-svn-id: http://svn.automattic.com/wordpress/trunk@1279 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -775,7 +775,27 @@ class xmlrpcval {
|
||||
var $mytype=0;
|
||||
|
||||
function xmlrpcval($val=-1, $type="") {
|
||||
global $xmlrpcTypes;
|
||||
global $xmlrpcTypes;
|
||||
// but this doesn't work, so we redefine it. WEIRD BUG ALERT
|
||||
$xmlrpcI4="i4";
|
||||
$xmlrpcInt="int";
|
||||
$xmlrpcBoolean="boolean";
|
||||
$xmlrpcDouble="double";
|
||||
$xmlrpcString="string";
|
||||
$xmlrpcDateTime="dateTime.iso8601";
|
||||
$xmlrpcBase64="base64";
|
||||
$xmlrpcArray="array";
|
||||
$xmlrpcStruct="struct";
|
||||
$xmlrpcTypes=array($xmlrpcI4 => 1,
|
||||
$xmlrpcInt => 1,
|
||||
$xmlrpcBoolean => 1,
|
||||
$xmlrpcString => 1,
|
||||
$xmlrpcDouble => 1,
|
||||
$xmlrpcDateTime => 1,
|
||||
$xmlrpcBase64 => 1,
|
||||
$xmlrpcArray => 2,
|
||||
$xmlrpcStruct => 3);
|
||||
// print_r($xmlrpcTypes);
|
||||
$this->me=array();
|
||||
$this->mytype=0;
|
||||
if ($val!=-1 || $type!="") {
|
||||
@@ -1058,7 +1078,7 @@ function iso8601_decode($idate, $utc=0) {
|
||||
****************************************************************/
|
||||
if (!function_exists('phpxmlrpc_decode')) {
|
||||
function phpxmlrpc_decode($xmlrpc_val) {
|
||||
$kind = $xmlrpc_val->kindOf();
|
||||
$kind = @$xmlrpc_val->kindOf();
|
||||
|
||||
if($kind == "scalar") {
|
||||
return $xmlrpc_val->scalarval();
|
||||
|
||||
Reference in New Issue
Block a user