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; }