diff options
author | ivan <ivan> | 2008-03-04 03:38:19 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-03-04 03:38:19 +0000 |
commit | 1b526ef4462e019eaffef61144842ca24f3dfaa7 (patch) | |
tree | 15d8c6d9c9aca8e28221a4905a9a551e6db60dd8 | |
parent | 0b9b02b4c214be1af2a01dc604d7b51a631c81ff (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 6205a6573..1d76f806a 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -2217,6 +2217,7 @@ sub print_html { s/\\\\\*/<br>/g; s/\\dollar ?/\$/g; s/\\#/#/g; + s/~/ /g; $_; } $conf->config_orbase('invoice_latexnotes', $template) |