diff options
author | jeff <jeff> | 2007-04-11 04:29:49 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-04-11 04:29:49 +0000 |
commit | ab79178a5d9077be8d130dea76a3dfb0da8c35fb (patch) | |
tree | a8b097efe09a72df9dcd0343200481151157fca2 /FS/FS/svc_Common.pm | |
parent | affd3a88612b17d3e68bbdf2664f78cd90cb9c1c (diff) |
usage suspend vs admin suspend -- avoid actual cust_pkg::suspend except legacy cases (backport)
Diffstat (limited to 'FS/FS/svc_Common.pm')
-rw-r--r-- | FS/FS/svc_Common.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/FS/FS/svc_Common.pm b/FS/FS/svc_Common.pm index f60a7d945..52226d20b 100644 --- a/FS/FS/svc_Common.pm +++ b/FS/FS/svc_Common.pm @@ -735,6 +735,17 @@ sub export { } +=item overlimit + +Sets or retrieves overlimit date. + +=cut + +sub overlimit { + my $self = shift; + $self->cust_svc->overlimit(@_); +} + =item cancel Stub - returns false (no error) so derived classes don't need to define this |