diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-05-07 18:30:10 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-05-07 18:30:10 -0700 |
commit | dd2048e8605404a4a55167555330473a6ce26437 (patch) | |
tree | 52b905904d77ff1dd41e9dff21a73d8244314fd2 /FS/FS | |
parent | 6420848d0d09e72f99196c5e5505662cee1bcab7 (diff) |
fix CDR pre-rating w/rate table included minutes, RT#27267
Diffstat (limited to 'FS/FS')
-rw-r--r-- | FS/FS/cdr.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/cdr.pm b/FS/FS/cdr.pm index d13c88bc4..c2be4f2ec 100644 --- a/FS/FS/cdr.pm +++ b/FS/FS/cdr.pm @@ -896,8 +896,8 @@ sub rate_prefix { # The rate detail itself has included minutes. We MUST have a place # to track them. my $included_min = $opt{'detail_included_min_hashref'} - or die "unable to rate CDR: rate detail has included minutes, but ". - "no detail_included_min_hashref provided.\n"; + or return "unable to rate CDR: rate detail has included minutes, but ". + "no detail_included_min_hashref provided.\n"; # by default, set the included minutes for this region/time to # what's in the rate_detail |