From: jeff Date: Mon, 19 May 2008 03:51:44 +0000 (+0000) Subject: fix latex template bogosity X-Git-Tag: root_of_webpay_support~642 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=36de6f6f3b7ec8cafc8f5247af750b331ee13a1b fix latex template bogosity --- 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"; } }