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

(-)a/C4/AuthoritiesMarc.pm (-2 / +1 lines)
Lines 1103-1109 sub BuildSummary { Link Here
1103
            } #See Also
1103
            } #See Also
1104
            foreach my $field ($record->field('5..')) {
1104
            foreach my $field ($record->field('5..')) {
1105
                my $type = 'seealso';
1105
                my $type = 'seealso';
1106
                $type = $marc21controlrefs{substr $field->subfield('w'), '0'} if ($field->subfield('w'));
1106
                $type = ($marc21controlrefs{substr $field->subfield('w'), '0'} || '') if ($field->subfield('w'));
1107
                if ($type eq 'subfi') {
1107
                if ($type eq 'subfi') {
1108
                    push @seealso, {
1108
                    push @seealso, {
1109
                        heading => $field->as_string($marc21subfields),
1109
                        heading => $field->as_string($marc21subfields),
1110
- 

Return to bug 3462