From dc17bcc6ab865b4a2cc334fce063d0f08a67323e Mon Sep 17 00:00:00 2001 From: "Tomas V.V.Cox" Date: Sat, 23 Mar 2002 15:56:14 +0000 Subject: [PATCH] fix parse error --- pear/PEAR/Command/Install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pear/PEAR/Command/Install.php b/pear/PEAR/Command/Install.php index 40fa0a91da..7204c309bf 100644 --- a/pear/PEAR/Command/Install.php +++ b/pear/PEAR/Command/Install.php @@ -70,10 +70,10 @@ class PEAR_Command_Install extends PEAR_Command_Common $failmsg = ''; $opts = array(); switch ($command) { - case 'upgrade': { + case 'upgrade': $opts['upgrade'] = true; // fall through - case 'install': + case 'install': { if (isset($options['f'])) { $opts['force'] = true; } -- 2.50.1