diff options
author | ivan <ivan> | 2009-02-21 20:56:14 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-02-21 20:56:14 +0000 |
commit | 1843cae16850edfbd56440f1fe01a2df89336811 (patch) | |
tree | bdd9576df615e715dcb651779edd3aca087058f7 | |
parent | a04f7d97cd3e57ee9061fba5f737d6d77c782c13 (diff) |
hmm, add no_empty_county option to location_sql search, for tax reports. RT#4878
-rw-r--r-- | FS/FS/cust_pkg.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_pkg.pm b/FS/FS/cust_pkg.pm index 203a26901..6bb4e8276 100644 --- a/FS/FS/cust_pkg.pm +++ b/FS/FS/cust_pkg.pm @@ -2359,7 +2359,7 @@ substitute for the placeholders in that fragment. sub location_sql { my($class, %opt) = @_; my $ornull = $opt{'ornull'}; - my $nec = $opt{'noempty_county'}; + my $nec = $opt{'no_empty_county'}; my $conf = new FS::Conf; |