diff options
author | ivan <ivan> | 2008-11-01 20:01:00 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-11-01 20:01:00 +0000 |
commit | c1b91d63bd6a989fe766d3549471bda2e328c1d9 (patch) | |
tree | a1a5ab707aa74fc4f4af34a353993cb09f1b02be | |
parent | 9d0fa42c1500bb5fa7e7f19d3271911240469bfc (diff) |
1.7 backport of cust_main_county::sql_taxclass_sameregion needs FS::Record::dbh imported, also causing tax report to bail out, sheesh, RT#4133
-rw-r--r-- | FS/FS/cust_main_county.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main_county.pm b/FS/FS/cust_main_county.pm index 22c91e82f..9df4b552c 100644 --- a/FS/FS/cust_main_county.pm +++ b/FS/FS/cust_main_county.pm @@ -4,7 +4,7 @@ use strict; use vars qw( @ISA @EXPORT_OK $conf @cust_main_county %cust_main_county $countyflag ); use Exporter; -use FS::Record qw( qsearch ); +use FS::Record qw( qsearch dbh ); @ISA = qw( FS::Record ); @EXPORT_OK = qw( regionselector ); |