Browse Source

Merge branch 'bug_9727' into 3.12-master

3.12.x
Jared Camins-Esakov 11 years ago
parent
commit
b2f884a2e8
  1. 2
      Koha/SearchEngine/Solr/Index.pm

2
Koha/SearchEngine/Solr/Index.pm

@ -40,7 +40,7 @@ sub index_record {
$record = GetAuthority( $id ) if $recordtype eq "authority";
$record = GetMarcBiblio( $id ) if $recordtype eq "biblio";
if ($record_type eq 'biblio' && C4::Context->preference('IncludeSeeFromInSearches')) {
if ($recordtype eq 'biblio' && C4::Context->preference('IncludeSeeFromInSearches')) {
my $normalizer = Koha::RecordProcessor->new( { filters => 'EmbedSeeFromHeadings' } );
$record = $normalizer->process($record);
}

Loading…
Cancel
Save