diff options
author | ivan <ivan> | 2008-12-22 00:46:48 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-12-22 00:46:48 +0000 |
commit | a616aeae641ff885b0bb4667d38d87a769f7254f (patch) | |
tree | 8aa32c1fc5cb1e2b48ae3a78cd5e7f1f409bd31c | |
parent | 754f0cc394f5d4e576a9f8d308ceab2ba1bf26da (diff) |
have \& in invoice_latexreturnaddress translate to & in HTML, RT#4426
-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 92d780979..ccfec79e8 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -2271,6 +2271,7 @@ sub print_html { s/~/ /g; s/\\\\\*?\s*$/<BR>/; s/\\hyphenation\{[\w\s\-]+\}//; + s/\\([&])/\1/g; $_; } $conf->config_orbase( 'invoice_latexreturnaddress', |