diff options
author | jeff <jeff> | 2008-05-19 22:31:17 +0000 |
---|---|---|
committer | jeff <jeff> | 2008-05-19 22:31:17 +0000 |
commit | 5f55cf0ba46d389d17fcbb21bd2808d35cd56f72 (patch) | |
tree | 857e7631a890257faf3e6ebdff2902e7c81deebb /FS | |
parent | d77819eb20180fba850526a52a8097979644d280 (diff) |
fix broken pagenation
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_bill_pkg.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/cust_bill_pkg.pm b/FS/FS/cust_bill_pkg.pm index a0a211bb0..091d3447b 100644 --- a/FS/FS/cust_bill_pkg.pm +++ b/FS/FS/cust_bill_pkg.pm @@ -245,7 +245,8 @@ sub details { $format_sub = sub { my $detail = shift; $csv->parse($detail) or return "can't parse $detail"; - join(' & ', map { &$escape_function($_) } $csv->fields ); + join(' & ', map { '\small{'. &$escape_function($_). '}' } + $csv->fields ); } if $format eq 'latex'; |