diff options
| author | Tomas V.V.Cox <cox@php.net> | 2003-08-02 14:59:44 +0000 |
|---|---|---|
| committer | Tomas V.V.Cox <cox@php.net> | 2003-08-02 14:59:44 +0000 |
| commit | ad9875b877c3899be565a242b06b02742630ba78 (patch) | |
| tree | 5c6c62d2c3a685937ee69628c883775088a88b89 | |
| parent | 6aa44378f3d8a1cee209579f6eeb98848b202623 (diff) | |
| download | php-git-ad9875b877c3899be565a242b06b02742630ba78.tar.gz | |
upgrade-all back to work
| -rw-r--r-- | pear/PEAR/Command/Install.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pear/PEAR/Command/Install.php b/pear/PEAR/Command/Install.php index 8a3d48e884..96a413f4c8 100644 --- a/pear/PEAR/Command/Install.php +++ b/pear/PEAR/Command/Install.php @@ -259,6 +259,7 @@ package if needed. $installed = array_flip($reg->listPackages()); $params = array(); foreach ($latest as $package => $info) { + $package = strtolower($package); if (!isset($installed[$package])) { // skip packages we don't have installed continue; @@ -269,7 +270,7 @@ package if needed. continue; } $params[] = $package; - $this->ui->outputData("will upgrade $package", $command); + $this->ui->outputData(array('data' => "Will upgrade $package"), $command); } } foreach ($params as $pkg) { |
