From 921148d6321b47d9c8ca5b85f658339763d3981f Mon Sep 17 00:00:00 2001 From: yangduo Date: Wed, 15 Jan 2025 11:42:51 +0800 Subject: [PATCH] fix --- webapp/controller/RechargeController.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/controller/RechargeController.class.php b/webapp/controller/RechargeController.class.php index 62047ab..8d5919b 100644 --- a/webapp/controller/RechargeController.class.php +++ b/webapp/controller/RechargeController.class.php @@ -817,7 +817,7 @@ class RechargeController foreach ($dailypurchase as $key => $val) { if ($val['time'] < $daysecs) { - unset($dailypurchase['$key']); + unset($dailypurchase[$key]); } } }