From 36de6f6f3b7ec8cafc8f5247af750b331ee13a1b Mon Sep 17 00:00:00 2001 From: jeff Date: Mon, 19 May 2008 03:51:44 +0000 Subject: [PATCH] fix latex template bogosity --- conf/invoice_latex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/invoice_latex b/conf/invoice_latex index e43fc3eb0..34ae4cbeb 100644 --- a/conf/invoice_latex +++ b/conf/invoice_latex @@ -244,13 +244,13 @@ Terms: [@-- $terms --@]\\ if (@$ext_description) { $OUT .= '\multicolumn{1}{l}{\rule{0pt}{1.0ex}} &'; - $OUT .= '\multicolumn{2}{l}{\begin{tabular}{lllll}'; %%cheating at 5 + $OUT .= '\multicolumn{2}{l}{\small{\begin{tabular}{llllll}';#cheating at 6 foreach my $ext_desc (@$ext_description) { $ext_desc = substr($ext_desc, 0, 80) . '...' if (length($ext_desc) > 80); - $OUT .= '\small{' . $ext_desc . '}' . "\\\\${rowbreak}\n"; + $OUT .= "$ext_desc \\\\${rowbreak}\n"; } - $OUT .="\\end{tabular}}\\\\${rowbreak}\n"; + $OUT .="\\end{tabular}}}\\\\${rowbreak}\n"; } } -- 2.11.0