summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhttemplate/view/cust_bill.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/cust_bill.cgi b/httemplate/view/cust_bill.cgi
index 39c1a191f..6c8afe74d 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') ) { %>
- <%= $cust_bill->print_html('', $templatename) %>
+ <%= join("\n", $cust_bill->print_html('', $templatename) ) %>
<% } else { %>
- <PRE><%= $cust_bill->print_text('', $templatename) %></PRE>
+ <PRE><%= join("\n", $cust_bill->print_text('', $templatename) ) %></PRE>
<% } %>
</BODY></HTML>