From 20d2a04059d45272e06c8677e442913a251f04a2 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Wed, 7 May 2014 18:19:05 -0700 Subject: [PATCH] fix CDR pre-rating w/unlinked phone numbers, RT#27267 --- FS/FS/cdr.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FS/FS/cdr.pm b/FS/FS/cdr.pm index d3e44fedb..d13c88bc4 100644 --- a/FS/FS/cdr.pm +++ b/FS/FS/cdr.pm @@ -911,7 +911,7 @@ sub rate_prefix { $charge_sec -= ($included_min->{$regionnum}{$ratetimenum} * 60); $included_min->{$regionnum}{$ratetimenum} = 0; } - } elsif ( ${ $opt{'plan_included_min'} } > 0 ) { + } elsif ( $opt{plan_included_min} && ${ $opt{plan_included_min} } > 0 ) { # The package definition has included minutes, but only for in-group # rate details. Decrement them if this is an in-group call. if ( $rate_detail->region_group ) { -- 2.11.0