From ac53945e9bf12ee0a5eb06d65fb435d916833175 Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Mon, 29 Apr 2002 06:24:37 +0000 Subject: [PATCH] * PEAR_Installer constructor now expects only the UI object --- pear/PEAR/Command/Install.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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(); -- 2.40.0