diff options
author | ivan <ivan> | 2005-04-28 17:05:02 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-04-28 17:05:02 +0000 |
commit | d953e47858164395a6a8607981eabc91ee2a6765 (patch) | |
tree | be3cfac0783e1106713cd47e21e213e8580358cf | |
parent | a8b9bad222716429aceaee2bef64482bc9fd155c (diff) |
add < and > to _latex_escape (khoff)
-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 4c37e68b2..e49e0f2c6 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -1486,6 +1486,7 @@ sub print_pdf { sub _latex_escape { my $value = shift; $value =~ s/([#\$%&~_\^{}])( )?/"\\$1". ( ( defined($2) && length($2) ) ? "\\$2" : '' )/ge; + $value =~ s/([<>])/\$$1\$/g; $value; } |