add < and > to _latex_escape (khoff)
authorivan <ivan>
Thu, 28 Apr 2005 17:05:02 +0000 (17:05 +0000)
committerivan <ivan>
Thu, 28 Apr 2005 17:05:02 +0000 (17:05 +0000)
FS/FS/cust_bill.pm

index 4c37e68..e49e0f2 100644 (file)
@@ -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;
 }