summaryrefslogtreecommitdiff
path: root/FS/FS/cust_main
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-12-01 16:59:15 -0500
committerChristopher Burger <burgerc@freeside.biz>2017-12-04 10:31:08 -0500
commit689304b4b6081c87c47a791ea1f64e9b562d9ea5 (patch)
treebbe737400939640b060235b44a7c598f262a558c /FS/FS/cust_main
parentf47f799b5b48bbd9997a02c9798a081ac5640ee9 (diff)
RT# 75095 - Fixed use of a constant warning.
Diffstat (limited to 'FS/FS/cust_main')
-rw-r--r--FS/FS/cust_main/Import_Charges.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/cust_main/Import_Charges.pm b/FS/FS/cust_main/Import_Charges.pm
index 64fcb5c..0a12c87 100644
--- a/FS/FS/cust_main/Import_Charges.pm
+++ b/FS/FS/cust_main/Import_Charges.pm
@@ -169,10 +169,10 @@ sub batch_charge {
if ( $row{agent_custid} && $agentnum ) {
$id = $row{agent_custid};
- $data{$id}{cust} = (
+ $data{$id}{cust} = {
'agent_custid' => $row{agent_custid},
'agentnum' => $agentnum,
- );
+ };
%hash = ( 'agent_custid' => $row{agent_custid},
'agentnum' => $agentnum,
);