summaryrefslogtreecommitdiff
path: root/FS/FS/cust_bill_pkg.pm
diff options
context:
space:
mode:
authorjeff <jeff>2008-05-19 22:31:29 +0000
committerjeff <jeff>2008-05-19 22:31:29 +0000
commit8688433f7692a9a0891c91f53fff2420099b327c (patch)
tree78c266506561308b4823ff5e673b515a39889435 /FS/FS/cust_bill_pkg.pm
parent45aa7a5ce1e0420a97d8af399ba53f7c322f7999 (diff)
fix broken pagenation
Diffstat (limited to 'FS/FS/cust_bill_pkg.pm')
-rw-r--r--FS/FS/cust_bill_pkg.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/cust_bill_pkg.pm b/FS/FS/cust_bill_pkg.pm
index 5d60311..31d5378 100644
--- a/FS/FS/cust_bill_pkg.pm
+++ b/FS/FS/cust_bill_pkg.pm
@@ -262,7 +262,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';