Lines 177-182
if ( $op eq "add_confirm" ) {
Link Here
|
177 |
} |
177 |
} |
178 |
} |
178 |
} |
179 |
else { |
179 |
else { |
|
|
180 |
for my $f ( split(/\s*\,\s*/, C4::Context->preference("OPACSuggestionUnwantedFields") ) ) { |
181 |
delete $suggestion->{$f}; |
182 |
} |
183 |
|
180 |
my $scrubber = C4::Scrubber->new(); |
184 |
my $scrubber = C4::Scrubber->new(); |
181 |
foreach my $suggest ( keys %$suggestion ) { |
185 |
foreach my $suggest ( keys %$suggestion ) { |
182 |
|
186 |
|
183 |
- |
|
|