From 6115c160d19e6c82e3f713d0d79128fbf45e46da Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 8 Dec 2008 10:13:12 +0000 Subject: [PATCH] make CDRs smaller, so we can fit more columns, RT#4376 --- FS/FS/cust_bill_pkg.pm | 4 ++-- 1 file 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++; } -- 2.11.0