[freeside-commits] branch FREESIDE_3_BRANCH updated. a74ee3169c14095667d76dcee227c3ec783d5e96

Ivan Kohler ivan at freeside.biz
Wed Feb 13 10:26:22 PST 2019


The branch, FREESIDE_3_BRANCH has been updated
       via  a74ee3169c14095667d76dcee227c3ec783d5e96 (commit)
      from  248193c5c6b995bdbd4657fbbd005d88d0b03c6d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a74ee3169c14095667d76dcee227c3ec783d5e96
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Wed Feb 13 10:26:21 2019 -0800

    fix skip_old when date has leading 0, RT#81480

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

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/part_pkg/voip_cdr.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




More information about the freeside-commits mailing list