summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2017-12-01 16:59:15 -0500
committerChristopher Burger <burgerc@freeside.biz>2018-02-08 08:38:09 -0500
commitc86b5f4350dbb63e11e3e88eea38653d24f55e8b (patch)
tree44bc5ae25b4b11f592ff2815273cb8e99f7f1268
parent1050e60086386799dbba6e5bbcfc5a29e78eddb5 (diff)
RT# 75095 - Fixed use of a constant warning.
-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 64fcb5ccf..0a12c8752 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,
);