This commit is contained in:
yangduo 2025-01-15 17:01:58 +08:00
parent 109f7478d6
commit 6456272eb7

View File

@ -373,7 +373,7 @@ class RechargeController
)
);
if(!$ret) {
if (!$ret) {
phpcommon\sendError(ERR_INTERNAL + 1, '系统繁忙');
return;
}
@ -863,11 +863,15 @@ class RechargeController
}
}
$daily = array();
foreach ($dailypurchase as $key => $val) {
if ($val['time'] < $daysecs) {
unset($dailypurchase[$key]);
} else {
array_push($daily, $val);
}
}
$dailypurchase = $daily;
}
}