diff options
author | ivan <ivan> | 2005-05-26 19:30:13 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-05-26 19:30:13 +0000 |
commit | 1dc2f078842e5c2d28acd8e50b9066d217179a5f (patch) | |
tree | b215a73cfab8bc22d811939e83865e46bd33de6b /httemplate/view/cust_bill.cgi | |
parent | 0327e2c7c79a11ec950a58e518f8f36cd0f85302 (diff) |
silly perl version bs
Diffstat (limited to 'httemplate/view/cust_bill.cgi')
-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 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> |