diff options
-rw-r--r-- | ng_selfservice/prepaid.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ng_selfservice/prepaid.php b/ng_selfservice/prepaid.php index 14784007b..d9e6a8d92 100644 --- a/ng_selfservice/prepaid.php +++ b/ng_selfservice/prepaid.php @@ -84,7 +84,7 @@ foreach ($cust_pkg as $pkg) { $thissvc['pkgnum'] = $pkg['pkgnum']; $thissvc['status'] = $pkg['status']; $actsvcs[$thissvc['svcnum']] = $thissvc; - if ($thissvc['overlimit']) { + if ($thissvc['overlimit'] or ($thissvc['status'] != 'active')) { $expsvcs[$thissvc['svcnum']] = $thissvc; } } |