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

(-)a/Koha/Filter/MARC/EmbedSeeFromHeadings.pm (-1 / +1 lines)
Lines 85-90 sub _processrecord { Link Here
85
        my @newfields;
85
        my @newfields;
86
        foreach my $authfield (@seefrom) {
86
        foreach my $authfield (@seefrom) {
87
            my $tag = substr($field->tag(), 0, 1) . substr($authfield->tag(), 1, 2);
87
            my $tag = substr($field->tag(), 0, 1) . substr($authfield->tag(), 1, 2);
88
            next if MARC::Field->is_controlfield_tag($tag);
88
            my $newfield = MARC::Field->new($tag,
89
            my $newfield = MARC::Field->new($tag,
89
                    'z',
90
                    'z',
90
                    $authfield->indicator(2) || ' ',
91
                    $authfield->indicator(2) || ' ',
91
- 

Return to bug 9620