summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2019-02-13 10:26:15 -0800
committerIvan Kohler <ivan@freeside.biz>2019-02-13 10:26:15 -0800
commit064be49dc8f265aabe40efc681116472ec647528 (patch)
tree48c1088bbfe5fd2833002e4d206fcfae3072bd3e
parent92e8ec0e2092fef7bfb126f8d87acac83bbca8eb (diff)
fix skip_old when date has leading 0, RT#81480
-rw-r--r--FS/FS/part_pkg/voip_cdr.pm2
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 74deb8b..87c3247 100644
--- a/FS/FS/part_pkg/voip_cdr.pm
+++ b/FS/FS/part_pkg/voip_cdr.pm
@@ -679,7 +679,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