diff options
author | jonathan <jonathan@freeside.biz> | 2015-05-20 07:30:08 +0000 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-05-20 21:45:59 -0500 |
commit | d4241783f38422179fe88e65175995f0d1804e69 (patch) | |
tree | 9c58b0976a12816efc17d7f20007334b0a2a541b | |
parent | 3f7e500647a77273c083569e6e8caa5f015b55ce (diff) |
RT#28842: NG portal - Changes for prepaid needs [bug fix for unlimited usage pkgs]
-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; } } |