https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15187

--- Comment #16 from David Cook <[email protected]> ---
By the way, it looks like our indexing code for Elasticsearch already handles
880s:

my $tag = $field->tag();
# Handle alternate scripts in MARC 21
my $altscript = 0;
if ($marcflavour eq 'marc21' && $tag eq '880') {
    my $sub6 = $field->subfield('6');
    if ($sub6 =~ /^(...)-\d+/) {
        $tag = $1;
        $altscript = 1;
    }
}

In that case, it looks like they're not indexing 880 fields at all. Perhaps
that makes sense since if you index the 880 and the linkage derived from it,
you'd end up with 2x the keyword indexed fields...

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to