diff options
author | ivan <ivan> | 2008-03-04 03:34:14 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-03-04 03:34:14 +0000 |
commit | e1e374c37cafcb4e9e26a9ec30c8234b26dc0dad (patch) | |
tree | c6fd1cc277f93e911d24d9c9b21a1ceacabebf7b | |
parent | fbf3ed38747cf58c1c74612a19de5b0d5ce21928 (diff) |
fix latex->html notes substituion for newlines
-rw-r--r-- | FS/FS/cust_bill.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index ee95be83a..9b7752a6d 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -1674,7 +1674,7 @@ sub print_generic { s/\\item / <li>/g; s/\\end\{enumerate\}/<\/ol>/g; s/\\textbf\{(.*)\}/<b>$1<\/b>/g; - s/\\\\\*/ /; + s/\\\\\*/<br>/g; s/\\dollar ?/\$/g; $_; } @_ |