summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2008-03-04 03:37:53 +0000
committerivan <ivan>2008-03-04 03:37:53 +0000
commit0b9b02b4c214be1af2a01dc604d7b51a631c81ff (patch)
tree8a373eb3fc03a9dcf2fcf9455de08b357d566ebf /FS
parent75d05a5aee75581c00c50d6f238198ab9328d148 (diff)
and fix latex->html notes substituion for escaped #s
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/cust_bill.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm
index eebff0766..6205a6573 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -2216,6 +2216,7 @@ sub print_html {
s/\\textbf\{(.*)\}/<b>$1<\/b>/g;
s/\\\\\*/<br>/g;
s/\\dollar ?/\$/g;
+ s/\\#/#/g;
$_;
}
$conf->config_orbase('invoice_latexnotes', $template)