* typo fix

This commit is contained in:
Stig Bakken 2002-03-22 12:46:18 +00:00
parent 75f15860b1
commit 1b09d1f19c

View File

@ -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;