summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2008-03-04 03:37:50 +0000
committerivan <ivan>2008-03-04 03:37:50 +0000
commit9f54e4ca87b9e83b95730543a3feb033e82d07e6 (patch)
tree9a86f6bcbedf5b9d77cef1b9f4a5e3cd80122f18 /FS
parente1e374c37cafcb4e9e26a9ec30c8234b26dc0dad (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 9b7752a6d..1d4060130 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -1676,6 +1676,7 @@ sub print_generic {
s/\\textbf\{(.*)\}/<b>$1<\/b>/g;
s/\\\\\*/<br>/g;
s/\\dollar ?/\$/g;
+ s/\\#/#/g;
$_;
} @_
},