From 4cbf8513401e146bcff1e531390578def5499f4a Mon Sep 17 00:00:00 2001 From: yangduo Date: Tue, 14 Jan 2025 16:37:28 +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 d0f8f21..960bf4f 100644 --- a/webapp/controller/RechargeController.class.php +++ b/webapp/controller/RechargeController.class.php @@ -813,7 +813,7 @@ class RechargeController $nowTime = time(); foreach ($vipinfo as $key => $val) { if ($val['id'] == $_REQUEST['id']) { - if ($val['expire'] < $nowTime) { + if ($val['expire'] > 0 && $val['expire'] < $nowTime) { phpcommon\sendError(ERR_USER_BASE + 1, 'ζœˆε‘θΏ‡ζœŸ'); return; }