From eeb7f9dafcbe6d512e14971d830af9a39c7d73d2 Mon Sep 17 00:00:00 2001 From: "Tomas V.V.Cox" Date: Fri, 7 Jun 2002 10:20:41 +0000 Subject: [PATCH] More info output retouchs --- pear/PEAR/Command/Registry.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pear/PEAR/Command/Registry.php b/pear/PEAR/Command/Registry.php index bb12d1ecff..57bc616544 100644 --- a/pear/PEAR/Command/Registry.php +++ b/pear/PEAR/Command/Registry.php @@ -263,18 +263,18 @@ installed package.' } else { $rel = $d['rel']; } - if (isset($this->_deps_type_trans[$d['type']])) { $type = ucfirst($this->_deps_type_trans[$d['type']]); } else { $type = $d['type']; } - if (isset($d['name'])) { $name = $d['name'] . ' '; + } else { + $name = ''; } if (isset($d['version'])) { - $version = $d['version']; + $version = $d['version'] . ' '; } else { $version = ''; } -- 2.50.1