diff options
| -rw-r--r-- | pear/PEAR/Frontend/CLI.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pear/PEAR/Frontend/CLI.php b/pear/PEAR/Frontend/CLI.php index 7604077d46..941ff96535 100644 --- a/pear/PEAR/Frontend/CLI.php +++ b/pear/PEAR/Frontend/CLI.php @@ -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++) { |
