summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2011-04-14 00:23:49 +0000
committerivan <ivan>2011-04-14 00:23:49 +0000
commit5520f6ba588977ad69083a8d34309e9e97e6ec88 (patch)
tree1a834e2da3d139c70d8dc8b2ec9b553f2928b540
parent2dd074562d746f164deb35cad749b738e4020634 (diff)
fix missing information on invoices, RT#12461
-rw-r--r--FS/FS/cust_bill.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm
index fed1066fd..6a7286294 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -2553,7 +2553,7 @@ sub print_generic {
#invoice from info
'company_name' => scalar( $conf->config('company_name', $agentnum) ),
'company_address' => join("\n", $conf->config('company_address', $agentnum) ). "\n",
- 'company_phonenum'=> $conf->config('company_phonenum', $agentnum),
+ 'company_phonenum'=> scalar( $conf->config('company_phonenum', $agentnum) ),
'returnaddress' => $returnaddress,
'agent' => &$escape_function($cust_main->agent->agent),