mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-16 07:48:09 +02:00
CRITICAL UPDATE: last update Logic recharge not check is status on or off, it make expired customer stay in expired pool
This commit is contained in:
parent
be43a5b385
commit
2ed3dc991a
3 changed files with 12 additions and 8 deletions
|
@ -1,6 +1,10 @@
|
|||

|
||||
|
||||
# CHANGELOG
|
||||
## 2024.4.30
|
||||
|
||||
- CRITICAL UPDATE: last update Logic recharge not check is status on or off, it make expired customer stay in expired pool
|
||||
- Prevent double submit for recharge balance
|
||||
|
||||
## 2024.4.29
|
||||
|
||||
|
|
|
@ -213,7 +213,7 @@ class Package
|
|||
}
|
||||
}
|
||||
|
||||
if($isChangePlan){
|
||||
if ($isChangePlan || $b['status'] == 'off') {
|
||||
if ($p['is_radius']) {
|
||||
Radius::customerAddPlan($c, $p, "$date_exp $time");
|
||||
} else {
|
||||
|
@ -414,7 +414,7 @@ class Package
|
|||
}
|
||||
}
|
||||
|
||||
if($isChangePlan){
|
||||
if ($isChangePlan || $b['status'] == 'off') {
|
||||
if ($p['is_radius']) {
|
||||
Radius::customerAddPlan($c, $p, "$date_exp $time");
|
||||
} else {
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"version": "2024.4.29"
|
||||
"version": "2024.4.30"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue