summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/cust_main/Search.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main/Search.pm b/FS/FS/cust_main/Search.pm
index b52b359..76d1410 100644
--- a/FS/FS/cust_main/Search.pm
+++ b/FS/FS/cust_main/Search.pm
@@ -1247,7 +1247,7 @@ sub append_fuzzyfiles_fuzzyfield {
my ($field, $table) = reverse split('\.', $fuzzyfield);
$table ||= 'cust_main';
- return unless length($value);
+ return unless defined($value) && length($value);
open(CACHE, '>>:encoding(UTF-8)', "$dir/$table.$field" )
or die "can't open $dir/$table.$field: $!";