diff options
Diffstat (limited to 'httemplate/view')
-rwxr-xr-x | httemplate/view/cust_bill.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/cust_bill.cgi b/httemplate/view/cust_bill.cgi index 6c8afe74d..2ca7ba959 100755 --- a/httemplate/view/cust_bill.cgi +++ b/httemplate/view/cust_bill.cgi @@ -103,9 +103,9 @@ my $link = $templatename ? "$templatename-$invnum" : $invnum; <% } %> <% if ( $conf->exists('invoice_html') ) { %> - <%= join("\n", $cust_bill->print_html('', $templatename) ) %> + <%= join('', $cust_bill->print_html('', $templatename) ) %> <% } else { %> - <PRE><%= join("\n", $cust_bill->print_text('', $templatename) ) %></PRE> + <PRE><%= join('', $cust_bill->print_text('', $templatename) ) %></PRE> <% } %> </BODY></HTML> |