diff options
author | ivan <ivan> | 2008-12-08 08:46:32 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-12-08 08:46:32 +0000 |
commit | a95b449203e74068ae4f864f63a6bca1e14ce9cb (patch) | |
tree | d2cf554360470a5c9085c2cc741241b575117d62 /conf/invoice_html | |
parent | c94cc8e588a0888d4b979a10b65f02d07355c4b1 (diff) |
normal ext_desc shouldn't shove the second+ columns of CDRs out
Diffstat (limited to 'conf/invoice_html')
-rw-r--r-- | conf/invoice_html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/conf/invoice_html b/conf/invoice_html index a43cc92b7..49c11877c 100644 --- a/conf/invoice_html +++ b/conf/invoice_html @@ -154,7 +154,10 @@ foreach my $ext_desc ( @{$line->{'ext_description'} } ) { $OUT .= '<tr class="invoice_extdesc">'. - '<td align="left"> '. $ext_desc. '</td>'. + '<td align="left" '. + ( $ext_desc =~ /<\/?TD>/i ? '' : 'colspan=99' ). '>'. + ' '. $ext_desc. + '</td>'. '</tr>' } $OUT .= '</table></td><td></td></tr>'; |