mirror of
git://develop.git.wordpress.org/
synced 2025-03-15 09:29:48 +01:00
merging fixes by Mark Ghosh for service pings
git-svn-id: https://develop.svn.wordpress.org/trunk@1279 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
7b9518dbed
commit
3caaec0bc7
@ -776,6 +776,26 @@ class xmlrpcval {
|
|||||||
|
|
||||||
function xmlrpcval($val=-1, $type="") {
|
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->me=array();
|
||||||
$this->mytype=0;
|
$this->mytype=0;
|
||||||
if ($val!=-1 || $type!="") {
|
if ($val!=-1 || $type!="") {
|
||||||
@ -1058,7 +1078,7 @@ function iso8601_decode($idate, $utc=0) {
|
|||||||
****************************************************************/
|
****************************************************************/
|
||||||
if (!function_exists('phpxmlrpc_decode')) {
|
if (!function_exists('phpxmlrpc_decode')) {
|
||||||
function phpxmlrpc_decode($xmlrpc_val) {
|
function phpxmlrpc_decode($xmlrpc_val) {
|
||||||
$kind = $xmlrpc_val->kindOf();
|
$kind = @$xmlrpc_val->kindOf();
|
||||||
|
|
||||||
if($kind == "scalar") {
|
if($kind == "scalar") {
|
||||||
return $xmlrpc_val->scalarval();
|
return $xmlrpc_val->scalarval();
|
||||||
|
@ -503,6 +503,7 @@ function weblog_ping($server = '', $path = '') {
|
|||||||
$c = new xmlrpc_client($path, $server, 80);
|
$c = new xmlrpc_client($path, $server, 80);
|
||||||
$r = $c->send($f);
|
$r = $c->send($f);
|
||||||
|
|
||||||
|
if ('0' != $r) {
|
||||||
if ($debug) {
|
if ($debug) {
|
||||||
echo "<h3>Response Object Dump:</h3>
|
echo "<h3>Response Object Dump:</h3>
|
||||||
<pre>\n";
|
<pre>\n";
|
||||||
@ -525,6 +526,7 @@ function weblog_ping($server = '', $path = '') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($debug) print '<blockquote>' . $result['message'] . '</blockquote>';
|
if ($debug) print '<blockquote>' . $result['message'] . '</blockquote>';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function generic_ping($post_id = 0) {
|
function generic_ping($post_id = 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user