summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorjeff <jeff>2008-05-19 03:51:44 +0000
committerjeff <jeff>2008-05-19 03:51:44 +0000
commit36de6f6f3b7ec8cafc8f5247af750b331ee13a1b (patch)
treef646a0d30c115b450c04fd6cdc466d9b7050d675 /conf
parentc5e0b314496e375d84906e68430bd6017980faac (diff)
fix latex template bogosity
Diffstat (limited to 'conf')
-rw-r--r--conf/invoice_latex6
1 files 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";
}
}