summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjeff <jeff>2010-06-05 05:51:20 +0000
committerjeff <jeff>2010-06-05 05:51:20 +0000
commitd09d7ce875d44aadbef0e3f6e69fa92c6b00f0ee (patch)
treefa5976e1bfb72aed836a916ec7aa92f10458cc8b
parentfb1ac8b894c138a3a04c1d5941c969c99cd3d3f4 (diff)
don't delete too much RT#8581
-rw-r--r--FS/FS/part_pkg_taxrate.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_pkg_taxrate.pm b/FS/FS/part_pkg_taxrate.pm
index 5a1e7baa9..fb1afce18 100644
--- a/FS/FS/part_pkg_taxrate.pm
+++ b/FS/FS/part_pkg_taxrate.pm
@@ -296,7 +296,7 @@ sub batch_import {
$hash->{'country'} = 'US'; # CA is available
- delete($hash->{'taxable'}) if ($hash->{'taxable'} eq 'N');
+ $hash->{'taxable'} = '' if ($hash->{'taxable'} eq 'N');
if (exists($hash->{actionflag}) && $hash->{actionflag} eq 'D') {
delete($hash->{actionflag});