From: Greg Beaver Date: Wed, 3 Dec 2003 22:39:55 +0000 (+0000) Subject: duhhh... X-Git-Tag: php-5.0.0b3RC1~369 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35bdc2f7eb1b277d738b5ca33689294e992c0244;p=php duhhh... --- diff --git a/pear/PEAR/Installer-minus-download.php b/pear/PEAR/Installer-minus-download.php index 4bc1d1ee6d..4e22964e64 100644 --- a/pear/PEAR/Installer-minus-download.php +++ b/pear/PEAR/Installer-minus-download.php @@ -582,11 +582,12 @@ class PEAR_Installer extends PEAR_Downloader { // trickiness: initialize here parent::PEAR_Downloader($this->ui, $options, $config); + $ret = parent::download($packages); $errors = $this->getErrorMsgs(); $installpackages = $this->getDownloadedPackages(); trigger_error("PEAR Warning: PEAR_Installer::download() is deprecated " . "in favor of PEAR_Downloader class", E_USER_WARNING); - return parent::download($packages); + return $ret; } // }}}