diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-12-01 16:59:15 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2018-02-08 08:38:09 -0500 |
commit | c86b5f4350dbb63e11e3e88eea38653d24f55e8b (patch) | |
tree | 44bc5ae25b4b11f592ff2815273cb8e99f7f1268 /FS | |
parent | 1050e60086386799dbba6e5bbcfc5a29e78eddb5 (diff) |
RT# 75095 - Fixed use of a constant warning.
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_main/Import_Charges.pm | 4 |
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, ); |