mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-02-24 23:45:38 +08:00
Fix instalment finished
This commit is contained in:
parent
1d0d3f13ab
commit
850581d328
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class User
|
|||
// installment
|
||||
list($cost, $rem) = explode(":", $v);
|
||||
// :0 installment is done
|
||||
if ($rem != 0) {
|
||||
if (!empty($rem)) {
|
||||
$bills[$k] = $cost;
|
||||
$addcost += $cost;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue