diff options
author | ivan <ivan> | 2010-09-29 19:38:00 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-09-29 19:38:00 +0000 |
commit | 700eefaade6c281ef921965543e71534cd78a84d (patch) | |
tree | 4ef12c736fbbd20e7bfcaecae149becd92745425 | |
parent | 8faaca01acec8b6820d3bd9aaf2a4b240a91660b (diff) |
fix noskip_dst_length_accountcode_tollfree, RT#9683
-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 8294bed65..005009ae2 100644 --- a/FS/FS/part_pkg/voip_cdr.pm +++ b/FS/FS/part_pkg/voip_cdr.pm @@ -851,7 +851,7 @@ sub check_chargable { return "destination less than $dst_length digits" if $dst_length && length($cdr->dst) < $dst_length && ! ( $opt{'noskip_dst_length_accountcode_tollfree'} - && $cdr->is_tollfree + && $cdr->is_tollfree('accountcode') ); return "lastapp is $opt{'skip_lastapp'}" |