From ba58657e5c3de57db339a9a97f9cea26af341077 Mon Sep 17 00:00:00 2001 From: Christopher Burger Date: Fri, 1 Dec 2017 16:59:15 -0500 Subject: [PATCH] RT# 75095 - Fixed use of a constant warning. --- FS/FS/cust_main/Import_Charges.pm | 4 ++-- 1 file 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, ); -- 2.11.0