diff options
author | ivan <ivan> | 2008-06-23 02:35:02 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-06-23 02:35:02 +0000 |
commit | 5c6cf04c160cfc19c964399a5d5791033f4115cf (patch) | |
tree | 069caa2f05fcd43b2f7be6056c56e604ea3c4475 /conf/invoice_html | |
parent | da99739555be2dfc4dd31e8c13d36aead047b707 (diff) |
fix leaking colspan in totals on sectioned invoices
Diffstat (limited to 'conf/invoice_html')
-rw-r--r-- | conf/invoice_html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/invoice_html b/conf/invoice_html index 5afbb7ad3..98a176058 100644 --- a/conf/invoice_html +++ b/conf/invoice_html @@ -148,7 +148,7 @@ $OUT .= '<tr class="invoice_totaldesc">'. qq(<td style="$style"> </td>). - qq(<td align="left" style="$style"> colspan=3). + qq(<td align="left" style="$style" colspan=3>). $section->{'description'}. ' Total </td>'. qq(<td align="right" style="$style">). $section->{'subtotal'}. '</td>'. |