* array_merge is more ticklish in php5

This commit is contained in:
Stig Bakken 2003-10-27 06:52:14 +00:00
parent 17b9b2dc85
commit 5b89e67334

View File

@ -304,6 +304,12 @@ class PEAR_Frontend_CLI extends PEAR
}
for ($i = 0; $i < sizeof($table_data); $i++) {
extract($table_data[$i]);
if (!is_array($rowparams)) {
$rowparams = array();
}
if (!is_array($colparams)) {
$colparams = array();
}
$rowlines = array();
if ($height > 1) {
for ($c = 0; $c < sizeof($data); $c++) {