fix skip_old when date has leading 0, RT#81480
authorIvan Kohler <ivan@freeside.biz>
Wed, 13 Feb 2019 18:26:15 +0000 (10:26 -0800)
committerIvan Kohler <ivan@freeside.biz>
Wed, 13 Feb 2019 18:26:15 +0000 (10:26 -0800)
FS/FS/part_pkg/voip_cdr.pm

index 74deb8b..87c3247 100644 (file)
@@ -679,7 +679,7 @@ sub check_chargable {
       and $cdr->max_callers <= $self->option_cacheable('skip_max_callers');
 
   return "calldate < ". $self->option_cacheable('skip_old')
       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
     && $cdr->calldate_unix < str2time($self->option_cacheable('skip_old')); 
 
   #all right then, rate it