From: Christopher Burger Date: Fri, 1 Dec 2017 21:59:15 +0000 (-0500) Subject: RT# 75095 - Fixed use of a constant warning. X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=ba58657e5c3de57db339a9a97f9cea26af341077 RT# 75095 - Fixed use of a constant warning. --- 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, );