bug 2479: allow MARC21 bib 440 to link to authorities
authorGalen Charlton <galen.charlton@liblime.com>
Wed, 6 Aug 2008 16:32:15 +0000 (11:32 -0500)
committerJoshua Ferraro <jmf@liblime.com>
Wed, 6 Aug 2008 19:49:55 +0000 (14:49 -0500)
Fixed overly-strict interpretation of OCLC practice
that prevented 440 series statement/added entries
from linking to the appropriate series authority
record.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
C4/Heading/MARC21.pm

index f6e712a..1f1475a 100644 (file)
@@ -52,6 +52,7 @@ my $bib_heading_fields = {
     '110' => { auth_type => 'CORPO_NAME', subfields => 'abcdefghklmnoprst', main_entry => 1 },
     '111' => { auth_type => 'MEETI_NAME', subfields => 'acdefghjklnpqst', main_entry => 1 },
     '130' => { auth_type => 'UNIF_TITLE', subfields => 'adfghklmnoprst', main_entry => 1 },
+    '440' => { auth_type => 'UNIF_TITLE', subfields => 'anp', series => 1 },
     '600' => { auth_type => 'PERSO_NAME', subfields => 'abcdefghjklmnopqrstvxyz', subject => 1 },
     '610' => { auth_type => 'CORPO_NAME', subfields => 'abcdefghklmnoprstvxyz', subject => 1 },
     '611' => { auth_type => 'MEETI_NAME', subfields => 'acdefghjklnpqstvxyz', subject => 1 },