View | Details | Raw Unified | Return to bug 35792
Collapse All | Expand All

(-)a/Koha/SearchEngine/Elasticsearch.pm (-2 / +1 lines)
Lines 616-622 sub marc_records_to_documents { Link Here
616
                my $altscript = 0;
616
                my $altscript = 0;
617
                if ($marcflavour eq 'marc21' && $tag eq '880') {
617
                if ($marcflavour eq 'marc21' && $tag eq '880') {
618
                    my $sub6 = $field->subfield('6');
618
                    my $sub6 = $field->subfield('6');
619
                    if ($sub6 =~ /^(...)-\d+/) {
619
                    if ($sub6 && $sub6 =~ /^(...)-\d+/) {
620
                        $tag = $1;
620
                        $tag = $1;
621
                        $altscript = 1;
621
                        $altscript = 1;
622
                    }
622
                    }
623
- 

Return to bug 35792