From bb85e622b8bc663941e2f8cc08dc9ea7864ef646 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 23 Oct 2005 20:10:28 +0000 Subject: [PATCH] Hooked up some colspan parameters that weren't working --- printer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/printer.php b/printer.php index 573f85b..978929d 100644 --- a/printer.php +++ b/printer.php @@ -517,7 +517,7 @@ EOD; */ function row_tfoot($data, $colspan = 2) { - echo $this->row_span($data, 'tfoot', 'center'); + echo $this->row_span($data, 'tfoot', 'center', $colspan); } /** @@ -552,7 +552,7 @@ EOD; $output .= ($reset ? "\n\t\t" : ''); $output .= ($extra ? "\n\t\t$extra" : ''); $output .= "\n\t"; - $this->row_tfoot($output); + $this->row_tfoot($output, $colspan); } /** -- 2.22.5