From: ivan Date: Thu, 28 Apr 2005 17:05:02 +0000 (+0000) Subject: add < and > to _latex_escape (khoff) X-Git-Tag: SQL_LEDGER_2_4_4~1^2~330 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=d953e47858164395a6a8607981eabc91ee2a6765;p=freeside.git add < and > to _latex_escape (khoff) --- 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; }