diff options
author | Christopher Burger <burgerc@freeside.biz> | 2019-02-13 13:30:38 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2019-02-13 13:30:38 -0500 |
commit | a23d1195f67daa63534bb877512c84fbb9893f62 (patch) | |
tree | 89f45e2f624c9dc10268aeab9b189232de01640c | |
parent | c868e95a3e79af8e1a88bd7ebfb7db5805e1f48d (diff) | |
parent | a74ee3169c14095667d76dcee227c3ec783d5e96 (diff) |
Merge branch 'FREESIDE_3_BRANCH' of ssh://git.freeside.biz/home/git/freeside into FREESIDE_3_BRANCH
-rw-r--r-- | FS/FS/part_pkg/voip_cdr.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_pkg/voip_cdr.pm b/FS/FS/part_pkg/voip_cdr.pm index b5da530ce..8c7a9f83d 100644 --- a/FS/FS/part_pkg/voip_cdr.pm +++ b/FS/FS/part_pkg/voip_cdr.pm @@ -691,7 +691,7 @@ sub check_chargable { and $cdr->max_callers <= $self->option_cacheable('skip_max_callers'); return "calldate < ". $self->option_cacheable('skip_old') - if $self->option_cacheable('skip_old') + if length($self->option_cacheable('skip_old')) && $cdr->calldate_unix < str2time($self->option_cacheable('skip_old')); #all right then, rate it |