summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2011-04-14 00:23:54 +0000
committerivan <ivan>2011-04-14 00:23:54 +0000
commit15c8ea8134ddd0164bb1a648b1743f3b763e4cf8 (patch)
treec8cbf79c290f0dbe755900701029c78a3d56577c
parent10b8805854b2afc1862ace3f60eab5650e9d35d7 (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 914871d46..4cd3443a6 100644
--- a/FS/FS/cust_bill.pm
+++ b/FS/FS/cust_bill.pm
@@ -2517,7 +2517,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),