From 36d0dac9f251c5c7b2668d1412485de79e85c418 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 10 Sep 2021 11:33:18 +0200 Subject: [PATCH] Bug 28941: Deal with OPACSuggestionUnwantedFields Remove fields from OPACSuggestionUnwantedFields before creating the suggestion Signed-off-by: Marcel de Rooy JD amended patch: remove useless sort --- opac/opac-suggestions.pl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/opac/opac-suggestions.pl b/opac/opac-suggestions.pl index e4ed2090330..6f6e91b45a5 100755 --- a/opac/opac-suggestions.pl +++ b/opac/opac-suggestions.pl @@ -177,6 +177,10 @@ if ( $op eq "add_confirm" ) { } } else { + for my $f ( split(/\s*\,\s*/, C4::Context->preference("OPACSuggestionUnwantedFields") ) ) { + delete $suggestion->{$f}; + } + my $scrubber = C4::Scrubber->new(); foreach my $suggest ( keys %$suggestion ) { -- 2.25.1