diff options
author | ivan <ivan> | 2008-03-04 03:38:17 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-03-04 03:38:17 +0000 |
commit | 00c53199f47413deee33cac3abffc25d0fa9463c (patch) | |
tree | 3b7d13d26101cebe4ac1979b9bdeb7c5bda38900 | |
parent | 9f54e4ca87b9e83b95730543a3feb033e82d07e6 (diff) |
AND fix latex->html notes substituion for ~s
-rw-r--r-- | FS/FS/cust_bill.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index 1d4060130..9a49574f8 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -1677,6 +1677,7 @@ sub print_generic { s/\\\\\*/<br>/g; s/\\dollar ?/\$/g; s/\\#/#/g; + s/~/ /g; $_; } @_ }, |