1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

- fix bad revert and make the xmlrpc ext detections fallback

forgot that 5.1 still has pear in its branche
This commit is contained in:
Pierre Joye
2005-08-18 21:29:28 +00:00
parent b31ff96be9
commit f7ef84c32d

View File

@@ -115,9 +115,10 @@ class PEAR_Remote extends PEAR
$this->saveCache($_args, $result);
};
return $result;
} else {
return $this->raiseError("For this remote PEAR operation you need to load the xmlrpc extension or install XML_RPC");
}
if (!@include_once("XML/RPC.php")) {
return $this->raiseError("For this remote PEAR operation you need to install the XML_RPC package");
array_shift($args);
$server_host = $this->config->get('master_server');
$username = $this->config->get('username');