From dd0a5ef865f7547c34fa1a11de958ac8710e4ba5 Mon Sep 17 00:00:00 2001 From: Chris Sharp Date: Tue, 31 Jan 2023 13:23:11 -0500 Subject: [PATCH] quiet the logs --- Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm index 44209e230e..72105b0130 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Actor.pm @@ -1580,7 +1580,7 @@ sub patron_adv_search { return ($fleshed ? undef : []) unless (ref $search_hash ||'') eq 'HASH'; my $search_ok = 0; for my $key (keys %$search_hash) { - next if $search_hash->{$key}{value} =~ /^\s*$/; # empty filter + next if !$search_hash->{$key}{value} || $search_hash->{$key}{value} =~ /^\s*$/; # empty filter $search_ok = 1; last; } -- 2.11.0