From: Chris Sharp Date: Tue, 31 Jan 2023 18:23:11 +0000 (-0500) Subject: quiet the logs X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=dd0a5ef865f7547c34fa1a11de958ac8710e4ba5;p=evergreen%2Fpines.git quiet the logs --- 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; }