summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2005-01-03 18:25:06 +0000
committerivan <ivan>2005-01-03 18:25:06 +0000
commit88d681e1d80244a5116ac431b353a6a8b59e55f3 (patch)
tree6a22952271f0e2080be7ca3eab1f9e3a19908e5d /FS
parent658e271baebcdf077e5756735204f8f10567a0ad (diff)
eliminate warning: Argument "" isn\'t numeric in numeric gt (>)
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/cust_main.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm
index 44fb8d696..9144a81fb 100644
--- a/FS/FS/cust_main.pm
+++ b/FS/FS/cust_main.pm
@@ -1343,7 +1343,7 @@ sub bill {
|| $tax->recurtax =~ /^Y$/i;
next unless $taxable_charged;
- if ( $tax->exempt_amount > 0 ) {
+ if ( $tax->exempt_amount && $tax->exempt_amount > 0 ) {
my ($mon,$year) = (localtime($sdate) )[4,5];
$mon++;
my $freq = $part_pkg->freq || 1;