From: ivan Date: Mon, 8 Dec 2008 10:13:12 +0000 (+0000) Subject: make CDRs smaller, so we can fit more columns, RT#4376 X-Git-Tag: root_of_webpay_support~203 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=6115c160d19e6c82e3f713d0d79128fbf45e46da make CDRs smaller, so we can fit more columns, RT#4376 --- 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++; }