summaryrefslogtreecommitdiff
path: root/FS/FS/cust_bill_pkg.pm
diff options
context:
space:
mode:
authorivan <ivan>2008-12-08 10:13:12 +0000
committerivan <ivan>2008-12-08 10:13:12 +0000
commit6115c160d19e6c82e3f713d0d79128fbf45e46da (patch)
treede273ded525b9989f56d9a4a3fd4b7e6636bf927 /FS/FS/cust_bill_pkg.pm
parent656e7cc0470de4989abea933f1330510ebd0ce33 (diff)
make CDRs smaller, so we can fit more columns, RT#4376
Diffstat (limited to 'FS/FS/cust_bill_pkg.pm')
-rw-r--r--FS/FS/cust_bill_pkg.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/cust_bill_pkg.pm b/FS/FS/cust_bill_pkg.pm
index ddda50452..1629b79f5 100644
--- a/FS/FS/cust_bill_pkg.pm
+++ b/FS/FS/cust_bill_pkg.pm
@@ -287,10 +287,10 @@ sub details {
foreach ($csv->fields) {
$result .= ' & ' if $column > 1;
if ($column > 6) { # KLUDGE ALERT!
- $result .= '\multicolumn{1}{l}{\small{'.
+ $result .= '\multicolumn{1}{l}{\scriptsize{'.
&$escape_function($_). '}}';
}else{
- $result .= '\small{'. &$escape_function($_). '}';
+ $result .= '\scriptsize{'. &$escape_function($_). '}';
}
$column++;
}