From: Stig Bakken Date: Fri, 22 Mar 2002 12:46:18 +0000 (+0000) Subject: * typo fix X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~1115 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b09d1f19cd67c60f1e2965536a2d30167028ccc;p=php * typo fix --- diff --git a/pear/PEAR/Command/Registry.php b/pear/PEAR/Command/Registry.php index 8fe08b215c..25e0c576b4 100644 --- a/pear/PEAR/Command/Registry.php +++ b/pear/PEAR/Command/Registry.php @@ -65,21 +65,10 @@ class PEAR_Command_Registry extends PEAR_Command_Common if ($i++ % 20 == 0) { $this->ui->tableRow(array('Package', 'Version', 'State'), array('bold' => true)); -/* - if ($j++ > 0) { - print "\n"; - } - printf("%-20s %-10s %s\n", - "Package", "Version", "State"); - print str_repeat("-", 75)."\n"; -*/ } - $this->ui->tableRow(array($package['package'], $package['version'], $pacage['release_state'])); - -/* - printf("%-20s %-10s %s\n", $package['package'], - $package['version'], $package['release_state']); -*/ + $this->ui->tableRow(array($package['package'], + $package['version'], + $package['release_state'])); } $this->ui->endTable(); break;