summaryrefslogtreecommitdiff
path: root/pear/PEAR/Remote.php
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2005-08-11 16:43:26 +0000
committerRasmus Lerdorf <rasmus@php.net>2005-08-11 16:43:26 +0000
commitc792839d8fa22c31aa5868d0c14fb932bc9604ac (patch)
treef15059ce20a982c301beef1909b688b1877b58a7 /pear/PEAR/Remote.php
parent9aa81a786ba80528ebb9442c88efdd26769bdc81 (diff)
downloadphp-git-c792839d8fa22c31aa5868d0c14fb932bc9604ac.tar.gz
Remove pear/XML_RPC dependency for the pear installer
PEAR guys, please doublecheck this.
Diffstat (limited to 'pear/PEAR/Remote.php')
-rw-r--r--pear/PEAR/Remote.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/pear/PEAR/Remote.php b/pear/PEAR/Remote.php
index c75b11b5c1..1da25f0815 100644
--- a/pear/PEAR/Remote.php
+++ b/pear/PEAR/Remote.php
@@ -115,9 +115,8 @@ class PEAR_Remote extends PEAR
$this->saveCache($_args, $result);
};
return $result;
- }
- if (!@include_once("XML/RPC.php")) {
- return $this->raiseError("For this remote PEAR operation you need to install the XML_RPC package");
+ } else {
+ return $this->raiseError("For this remote PEAR operation you need to load the xmlrpc extension");
}
array_shift($args);
$server_host = $this->config->get('master_server');