From: Stig Bakken Date: Mon, 29 Apr 2002 06:24:37 +0000 (+0000) Subject: * PEAR_Installer constructor now expects only the UI object X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~372 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac53945e9bf12ee0a5eb06d65fb435d916833175;p=php * PEAR_Installer constructor now expects only the UI object --- diff --git a/pear/PEAR/Command/Install.php b/pear/PEAR/Command/Install.php index a9ffa65cd8..a4efc90fd9 100644 --- a/pear/PEAR/Command/Install.php +++ b/pear/PEAR/Command/Install.php @@ -94,9 +94,7 @@ class PEAR_Command_Install extends PEAR_Command_Common function run($command, $options, $params) { - $installer = &new PEAR_Installer($this->config); - $installer->setFrontend($this->ui); - $installer->debug = $this->config->get('verbose'); + $installer = &new PEAR_Installer($this->ui); $failmsg = ''; $opts = array();